jetstream-api 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/PKG-INFO +1 -1
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/properties.py +5 -1
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/jetstream_api.egg-info/PKG-INFO +1 -1
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/pyproject.toml +1 -1
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/LICENSE.txt +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/README.md +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/__init__.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/admin.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/common.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/connectivity.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/exception.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/msg.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/qmgr.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/ilink/util.py +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/jetstream_api.egg-info/SOURCES.txt +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/jetstream_api.egg-info/dependency_links.txt +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/jetstream_api.egg-info/top_level.txt +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/setup.cfg +0 -0
- {jetstream_api-0.1.0 → jetstream_api-0.1.1}/tests/test_example.py +0 -0
|
@@ -1069,7 +1069,7 @@ class ILQueueRealTimeInfo(_AutoAccessor):
|
|
|
1069
1069
|
class ILQueueFlow(_AutoAccessor):
|
|
1070
1070
|
def __init__(
|
|
1071
1071
|
self,
|
|
1072
|
-
incoming_msg_count: int | None = None,
|
|
1072
|
+
incoming_msg_count: int | bytes | bytearray | None = None,
|
|
1073
1073
|
outgoing_msg_count: int | None = None,
|
|
1074
1074
|
incoming_data_size: int | None = None,
|
|
1075
1075
|
outgoing_data_size: int | None = None,
|
|
@@ -1082,6 +1082,10 @@ class ILQueueFlow(_AutoAccessor):
|
|
|
1082
1082
|
self.outgoingDataSize = 0
|
|
1083
1083
|
self.depth = 0
|
|
1084
1084
|
|
|
1085
|
+
if isinstance(incoming_msg_count, (bytes, bytearray)):
|
|
1086
|
+
ba = incoming_msg_count
|
|
1087
|
+
incoming_msg_count = None
|
|
1088
|
+
|
|
1085
1089
|
if ba is None:
|
|
1086
1090
|
if incoming_msg_count is not None:
|
|
1087
1091
|
self.incomingMsgCount = incoming_msg_count
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|