@@ -7,34 +7,50 @@ Include Ensemble
77Class IOP .Common [ Abstract , ClassType = " " , ProcedureBlock , System = 4 ]
88{
99
10- /// One or more Classpaths (separated by '|' character) needed in addition to the ones configured in the Java Gateway Service
10+ /// One or more Classpaths (separated by '|' character)
1111Property %classpaths As %String (MAXLEN = " " );
1212
13+ /// Classname of the Python class to use
1314Property %classname As %String (MAXLEN = " " );
1415
16+ /// Module of the Python class to use
1517Property %module As %String (MAXLEN = " " );
1618
19+ /// Settings for the Python class, in the form of "property=value" pairs, separated by newlines
20+ /// Example: "property1=value1\nproperty2=value2"
21+ /// Note: This property is used to set the properties of the Python class dynamically
1722Property %settings As %String (MAXLEN = " " );
1823
1924/// Instance of class
2025Property %class As %SYS .Python ;
2126
27+ /// Enable debugging
28+ /// If set to 1, the Python class will be debugged using the debugpy module
29+ /// If set to 0, the Python class will not be debugged
2230Property %enable As %Boolean ;
2331
32+ /// Timeout in seconds for the an client debugging connection
2433Property %timeout As %Numeric [ InitialExpression = 30 ];
2534
35+ /// Port to use for the an client debugging connection
2636Property %port As %Numeric [ InitialExpression = 0 ];
2737
38+ /// Path to the Python interpreter for debugpy
2839Property %PythonInterpreterPath As %String (MAXLEN = 255 );
2940
41+ /// Enable traceback display
3042Property %traceback As %Boolean [ InitialExpression = 1 ];
3143
44+ /// Enable virtual environment
3245Property %Venv As %Boolean [ InitialExpression = 0 ];
3346
47+ /// Virtual environment site-packages path
3448Property %PythonPath As %String (MAXLEN = 255 );
3549
50+ /// Path to the Python runtime library
3651Property %PythonRuntimeLibrary As %String (MAXLEN = 255 );
3752
53+ /// Version of the Python runtime library
3854Property %PythonRuntimeLibraryVersion As %String ;
3955
4056/// Get Class
0 commit comments