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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jetstream-api
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Python client API for iLink M.O.M. (Message Oriented Middleware)
5
5
  Author: snowjeans
6
6
  License: Boost Software License - Version 1.0 - August 17th, 2003
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jetstream-api
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Python client API for iLink M.O.M. (Message Oriented Middleware)
5
5
  Author: snowjeans
6
6
  License: Boost Software License - Version 1.0 - August 17th, 2003
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "jetstream-api"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Python client API for iLink M.O.M. (Message Oriented Middleware)"
9
9
  authors = [{name = "snowjeans"}]
10
10
  readme = "README.md"
File without changes
File without changes
File without changes