jetstream-api 0.1.2__tar.gz → 0.1.3__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.2
3
+ Version: 0.1.3
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
@@ -1,6 +1,6 @@
1
1
  """iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
2
2
 
3
- __version__ = "0.1.2"
3
+ __version__ = "0.1.3"
4
4
 
5
5
  # --- Admin / Service ---
6
6
  from .admin import ILAdminService, ILAdminQmgr, ILLogBrowser, ILQueueBrowser
@@ -1733,7 +1733,7 @@ class ILServiceProperty(_AutoAccessor):
1733
1733
  self.ip = "127.0.0.1"
1734
1734
  self.port = 9998
1735
1735
  self.version = ""
1736
- self.timeoutSocketConnect = 10
1736
+ self.timeoutSocketSend = 10
1737
1737
  self.timeoutSocketRecv = 600
1738
1738
  self.logLevelSystem = 4
1739
1739
  self.logFileSizeSystem = 4194304
@@ -1768,7 +1768,7 @@ class ILServiceProperty(_AutoAccessor):
1768
1768
  offset += 22
1769
1769
  self.version = ba_pick_string(ba, offset, 20)
1770
1770
  offset += 20
1771
- self.timeoutSocketConnect = ba_pick_int(ba, offset, 10)
1771
+ self.timeoutSocketSend = ba_pick_int(ba, offset, 10)
1772
1772
  offset += 10
1773
1773
  self.timeoutSocketRecv = ba_pick_int(ba, offset, 10)
1774
1774
  offset += 10
@@ -1813,7 +1813,7 @@ class ILServiceProperty(_AutoAccessor):
1813
1813
  offset += 22
1814
1814
  ba_merge(self.version, ba, offset)
1815
1815
  offset += 20
1816
- ba_merge(self.timeoutSocketConnect, ba, offset)
1816
+ ba_merge(self.timeoutSocketSend, ba, offset)
1817
1817
  offset += 10
1818
1818
  ba_merge(self.timeoutSocketRecv, ba, offset)
1819
1819
  offset += 10
@@ -1870,12 +1870,12 @@ class ILServiceProperty(_AutoAccessor):
1870
1870
  f"[{log_type}] is an unacceptable value. (acceptable value list: [0 | 1])"
1871
1871
  )
1872
1872
 
1873
- def set_timeout_socket_connect(self, sec: int) -> None:
1873
+ def set_timeout_socket_send(self, sec: int) -> None:
1874
1874
  if sec < -1:
1875
1875
  raise UnsupportedOperationException(
1876
1876
  f"[{sec}] is an unacceptable value. (acceptable value range: -1~)"
1877
1877
  )
1878
- self.timeoutSocketConnect = sec
1878
+ self.timeoutSocketSend = sec
1879
1879
 
1880
1880
  def set_timeout_socket_recv(self, sec: int) -> None:
1881
1881
  if sec < -1:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jetstream-api
3
- Version: 0.1.2
3
+ Version: 0.1.3
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.2"
7
+ version = "0.1.3"
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