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.
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/PKG-INFO +1 -1
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/__init__.py +1 -1
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/properties.py +5 -5
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/jetstream_api.egg-info/PKG-INFO +1 -1
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/pyproject.toml +1 -1
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/LICENSE.txt +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/README.md +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/admin.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/common.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/connectivity.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/exception.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/msg.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/qmgr.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/ilink/util.py +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/jetstream_api.egg-info/SOURCES.txt +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/jetstream_api.egg-info/dependency_links.txt +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/jetstream_api.egg-info/top_level.txt +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/setup.cfg +0 -0
- {jetstream_api-0.1.2 → jetstream_api-0.1.3}/tests/test_example.py +0 -0
|
@@ -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.
|
|
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.
|
|
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.
|
|
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
|
|
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.
|
|
1878
|
+
self.timeoutSocketSend = sec
|
|
1879
1879
|
|
|
1880
1880
|
def set_timeout_socket_recv(self, sec: int) -> None:
|
|
1881
1881
|
if sec < -1:
|
|
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
|