iris-pex-embedded-python 2.3.26b1__py3-none-any.whl → 2.3.27b1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of iris-pex-embedded-python might be problematic. Click here for more details.

@@ -48,7 +48,7 @@ Method OnResponse(
48
48
  {
49
49
  set tSC = $$$OK
50
50
  try {
51
- set response = ..%class."_dispatch_on_response"($this,request,response,callRequest,callResponse,pCompletionKey)
51
+ set response = ..%class."_dispatch_on_response"($this,request,callRequest,callResponse,pCompletionKey)
52
52
  } catch ex {
53
53
  set tSC = ex.AsStatus()
54
54
  }
@@ -62,7 +62,7 @@ Method OnComplete(
62
62
  set tSC = $$$OK
63
63
  try {
64
64
  set tSC = ..Connect() quit:$$$ISERR(tSC)
65
- set response = ..%class."_dispatch_on_complete"($this,request,response)
65
+ set response = ..%class."_dispatch_on_complete"($this,request)
66
66
  } catch ex {
67
67
  set tSC = ex.AsStatus()
68
68
  }
@@ -38,7 +38,7 @@ class _BusinessProcess(_BusinessHost):
38
38
  """
39
39
  return self.OnRequest(request)
40
40
 
41
- def on_response(self, request, response, callRequest, callResponse, completionKey):
41
+ def on_response(self, request, call_request, call_response, completion_key):
42
42
  """ Handles responses sent to the business process in response to messages that it sent to the target.
43
43
  A production calls this method whenever a response for a specific business process arrives on the appropriate queue and is assigned a job in which to execute.
44
44
  Typically this is a response to an asynchronous request made by the business process where the responseRequired parameter has a true value.
@@ -46,16 +46,16 @@ class _BusinessProcess(_BusinessHost):
46
46
  request: An instance of IRISObject or subclass of Message that contains the initial request message sent to the business process.
47
47
  response: An instance of IRISObject or subclass of Message that contains the response message that this business process can return
48
48
  to the production component that sent the initial message.
49
- callRequest: An instance of IRISObject or subclass of Message that contains the request that the business process sent to its target.
50
- callResponse: An instance of IRISObject or subclass of Message that contains the incoming response.
51
- completionKey: A string that contains the completionKey specified in the completionKey parameter of the outgoing SendAsync() method.
49
+ call_request: An instance of IRISObject or subclass of Message that contains the request that the business process sent to its target.
50
+ call_response: An instance of IRISObject or subclass of Message that contains the incoming response.
51
+ completion_key: A string that contains the completion_key specified in the completion_key parameter of the outgoing SendAsync() method.
52
52
  Returns:
53
53
  An instance of IRISObject or subclass of Message that contains the response message that this business process can return
54
54
  to the production component that sent the initial message.
55
55
  """
56
- return self.OnResponse(request, response, callRequest, callResponse, completionKey)
56
+ return self.OnResponse(request, call_request, call_response, completion_key)
57
57
 
58
- def on_complete(self, request, response):
58
+ def on_complete(self, request):
59
59
  """ Called after the business process has received and handled all responses to requests it has sent to targets.
60
60
  Parameters:
61
61
  request: An instance of IRISObject or subclass of Message that contains the initial request message sent to the business process.
@@ -65,7 +65,7 @@ class _BusinessProcess(_BusinessHost):
65
65
  An instance of IRISObject or subclass of Message that contains the response message that this business process can return
66
66
  to the production component that sent the initial message.
67
67
  """
68
- return self.OnComplete(request, response)
68
+ return self.OnComplete(request)
69
69
 
70
70
  @_BusinessHost.input_serialzer_param(0,'response')
71
71
  def reply(self, response):
@@ -77,15 +77,15 @@ class _BusinessProcess(_BusinessHost):
77
77
 
78
78
  return self.iris_handle.dispatchReply(response)
79
79
 
80
- def set_timer(self, timeout, completionKey=None):
80
+ def set_timer(self, timeout, completion_key=None):
81
81
  """ Specifies the maximum time the business process will wait for responses.
82
82
 
83
83
  Parameters:
84
84
  timeout: an integer that specifies a number of seconds, or a string that specifies a time period such as"PT15s",
85
85
  which represents 15 seconds of processor time.
86
- completionKey: a string that will be returned with the response if the maximum time is exceeded.
86
+ completion_key: a string that will be returned with the response if the maximum time is exceeded.
87
87
  """
88
- self.iris_handle.dispatchSetTimer(timeout, completionKey)
88
+ self.iris_handle.dispatchSetTimer(timeout, completion_key)
89
89
  return
90
90
 
91
91
  def _set_iris_handles(self, handle_current, handle_partner):
@@ -151,19 +151,19 @@ class _BusinessProcess(_BusinessHost):
151
151
 
152
152
  @_BusinessHost.input_deserialzer
153
153
  @_BusinessHost.output_serialzer
154
- def _dispatch_on_response(self, host_object, request, response, callRequest, callResponse, completionKey):
154
+ def _dispatch_on_response(self, host_object, request, call_request, call_response, completion_key):
155
155
  """ For internal use only. """
156
156
  self._restore_persistent_properties(host_object)
157
- return_object = self.on_response(request, response, callRequest, callResponse, completionKey)
157
+ return_object = self.on_response(request, call_request, call_response, completion_key)
158
158
  self._save_persistent_properties(host_object)
159
159
  return return_object
160
160
 
161
161
  @_BusinessHost.input_deserialzer
162
162
  @_BusinessHost.output_serialzer
163
- def _dispatch_on_complete(self, host_object, request, response):
163
+ def _dispatch_on_complete(self, host_object, request):
164
164
  """ For internal use only. """
165
165
  self._restore_persistent_properties(host_object)
166
- return_object = self.on_complete(request, response)
166
+ return_object = self.on_complete(request)
167
167
  self._save_persistent_properties(host_object)
168
168
  return return_object
169
169
 
@@ -181,7 +181,7 @@ class _BusinessProcess(_BusinessHost):
181
181
  """
182
182
  return
183
183
 
184
- def OnResponse(self, request, response, callRequest, callResponse, completionKey):
184
+ def OnResponse(self, request, call_request, call_response, completion_key):
185
185
  """
186
186
  DEPRECATED : use on_response
187
187
  Handles responses sent to the business process in response to messages that it sent to the target.
@@ -191,16 +191,16 @@ class _BusinessProcess(_BusinessHost):
191
191
  request: An instance of IRISObject or subclass of Message that contains the initial request message sent to the business process.
192
192
  response: An instance of IRISObject or subclass of Message that contains the response message that this business process can return
193
193
  to the production component that sent the initial message.
194
- callRequest: An instance of IRISObject or subclass of Message that contains the request that the business process sent to its target.
195
- callResponse: An instance of IRISObject or subclass of Message that contains the incoming response.
196
- completionKey: A string that contains the completionKey specified in the completionKey parameter of the outgoing SendAsync() method.
194
+ call_request: An instance of IRISObject or subclass of Message that contains the request that the business process sent to its target.
195
+ call_response: An instance of IRISObject or subclass of Message that contains the incoming response.
196
+ completion_key: A string that contains the completion_key specified in the completion_key parameter of the outgoing SendAsync() method.
197
197
  Returns:
198
198
  An instance of IRISObject or subclass of Message that contains the response message that this business process can return
199
199
  to the production component that sent the initial message.
200
200
  """
201
- return response
201
+ return
202
202
 
203
- def OnComplete(self, request, response):
203
+ def OnComplete(self, request):
204
204
  """
205
205
  DEPRECATED : use on_complete
206
206
  Called after the business process has received and handled all responses to requests it has sent to targets.
@@ -212,4 +212,4 @@ class _BusinessProcess(_BusinessHost):
212
212
  An instance of IRISObject or subclass of Message that contains the response message that this business process can return
213
213
  to the production component that sent the initial message.
214
214
  """
215
- return response
215
+ return
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iris_pex_embedded_python
3
- Version: 2.3.26b1
3
+ Version: 2.3.27b1
4
4
  Summary: Iris Interoperability based on Embedded Python
5
5
  Author-email: grongier <guillaume.rongier@intersystems.com>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  grongier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  grongier/cls/Grongier/PEX/BusinessOperation.cls,sha256=qvLahHnQPAKMrGCekQNXPJgKPvlCWH5nJa0eYvceGvQ,932
3
- grongier/cls/Grongier/PEX/BusinessProcess.cls,sha256=qnYVrS_ndjPHcXIms2G1yOeUegHP09RhBqUAh4dGWcM,2633
3
+ grongier/cls/Grongier/PEX/BusinessProcess.cls,sha256=iZwW5634mG90_4_Sp2atxt-CUx20jkhI6rUyvL99kRU,2615
4
4
  grongier/cls/Grongier/PEX/BusinessService.cls,sha256=2FXGkJ29zU3m-BcMVJTqD9skG9o7GvcHw60DAx4Fj3s,1039
5
5
  grongier/cls/Grongier/PEX/Common.cls,sha256=YEguYAhs9_nA2A0LHZpRtQ7wUqueaRPSS2LO_fOTGVs,5754
6
6
  grongier/cls/Grongier/PEX/Director.cls,sha256=wImRl1P37_A-Om8ahl2hfl92hxicqKnKAqzHOE4L8wg,1894
@@ -23,7 +23,7 @@ grongier/pex/__init__.py,sha256=nvcmRCxLy-lpL5GzlCKrmsSK8LF8Q0aKddx6ib8U50E,1166
23
23
  grongier/pex/__main__.py,sha256=ebEYPDOBKiXOlmdI4onpQLzfBKU4wyfijYyquA5dWV4,107
24
24
  grongier/pex/_business_host.py,sha256=lS0HcHHaTCKWtKmDBUMxeX59W8KClIqQBgl4pHXYpHI,22228
25
25
  grongier/pex/_business_operation.py,sha256=W_B9Ci1fei8SGcElkAd13gV9S4BNKeQciTMVqxxJVZc,3509
26
- grongier/pex/_business_process.py,sha256=UW27oa4XjTBJOxabCog8gb3t2xMoXCvcoS3xPagIM5Y,11858
26
+ grongier/pex/_business_process.py,sha256=wXo-pBTDVXhccwzVLolzNhwwEJIfor7y8_4EORGchsc,11770
27
27
  grongier/pex/_business_service.py,sha256=8CgpjcdVmv5747CTa3Lw3B48RYXq2SQN9qfdxvqEI5g,3735
28
28
  grongier/pex/_cli.py,sha256=NcMA3sXMDYA2NnGG0LB9Eww14aEmQbu0jQywWJZGD7E,6297
29
29
  grongier/pex/_common.py,sha256=yiJ-sH4ml5u9qEnZFX_4F-Rn2X6shtMhceJA9RCMChI,15158
@@ -105,9 +105,9 @@ iris/iris_ipm.py,sha256=Q0jcNItjywlqOPZr0hgdTFSeLPNEmB-tcICOI_cXnaY,790
105
105
  iris/iris_ipm.pyi,sha256=j7CNUZcjeDu5sgeWUZJO_Qi4vQmHh6aD-jPWv8OdoUs,374
106
106
  irisnative/_IRISNative.py,sha256=HQ4nBhc8t8_5OtxdMG-kx1aa-T1znf2I8obZOPLOPzg,665
107
107
  irisnative/__init__.py,sha256=6YmvBLQSURsCPKaNg7LK-xpo4ipDjrlhKuwdfdNb3Kg,341
108
- iris_pex_embedded_python-2.3.26b1.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
109
- iris_pex_embedded_python-2.3.26b1.dist-info/METADATA,sha256=5ZHcz0WvyGm2oqUJfhOGYNxiRjEEVoAfmcSE2J7pbuk,49682
110
- iris_pex_embedded_python-2.3.26b1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
111
- iris_pex_embedded_python-2.3.26b1.dist-info/entry_points.txt,sha256=atkAtHoIuwXcZ0jl5gwof0l__ru_lt8WhVYk6HxYf70,47
112
- iris_pex_embedded_python-2.3.26b1.dist-info/top_level.txt,sha256=Tl4ZHgeNefaZW2Oug30vSldhD-tWzixsIfzASBrZ9ps,43
113
- iris_pex_embedded_python-2.3.26b1.dist-info/RECORD,,
108
+ iris_pex_embedded_python-2.3.27b1.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
109
+ iris_pex_embedded_python-2.3.27b1.dist-info/METADATA,sha256=85XJRW_zRVzJLvQdW5TM375AFZFw5uVJfk37_Bqdzf4,49682
110
+ iris_pex_embedded_python-2.3.27b1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
111
+ iris_pex_embedded_python-2.3.27b1.dist-info/entry_points.txt,sha256=atkAtHoIuwXcZ0jl5gwof0l__ru_lt8WhVYk6HxYf70,47
112
+ iris_pex_embedded_python-2.3.27b1.dist-info/top_level.txt,sha256=Tl4ZHgeNefaZW2Oug30vSldhD-tWzixsIfzASBrZ9ps,43
113
+ iris_pex_embedded_python-2.3.27b1.dist-info/RECORD,,