jetstream-api 0.1.0__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.
- ilink/__init__.py +90 -0
- ilink/admin.py +3110 -0
- ilink/common.py +759 -0
- ilink/connectivity.py +612 -0
- ilink/exception.py +328 -0
- ilink/msg.py +1241 -0
- ilink/properties.py +2031 -0
- ilink/qmgr.py +1024 -0
- ilink/util.py +212 -0
- jetstream_api-0.1.0.dist-info/METADATA +47 -0
- jetstream_api-0.1.0.dist-info/RECORD +14 -0
- jetstream_api-0.1.0.dist-info/WHEEL +5 -0
- jetstream_api-0.1.0.dist-info/licenses/LICENSE.txt +23 -0
- jetstream_api-0.1.0.dist-info/top_level.txt +1 -0
ilink/__init__.py
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"""iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.1.0"
|
|
4
|
+
|
|
5
|
+
# --- Admin / Service ---
|
|
6
|
+
from .admin import ILAdminService, ILAdminQmgr, ILLogBrowser, ILQueueBrowser
|
|
7
|
+
|
|
8
|
+
# --- Queue Manager & Queue ---
|
|
9
|
+
from .qmgr import ILQmgr, ILQueue
|
|
10
|
+
|
|
11
|
+
# --- Message ---
|
|
12
|
+
from .msg import ILMsg, ILMsgUtil
|
|
13
|
+
|
|
14
|
+
# --- Constants & Enums ---
|
|
15
|
+
from .common import ILC, ILCC, ILRC, MatchOption
|
|
16
|
+
|
|
17
|
+
# --- Properties ---
|
|
18
|
+
from .properties import (
|
|
19
|
+
DestItem,
|
|
20
|
+
PartitionItem,
|
|
21
|
+
ILQueueProperty,
|
|
22
|
+
ILChannelProperty,
|
|
23
|
+
ILChannelType,
|
|
24
|
+
ILChannelStatus,
|
|
25
|
+
ILChannelDirection,
|
|
26
|
+
ILChannelSecurity,
|
|
27
|
+
ILChannelBalanceMode,
|
|
28
|
+
ILQmgrProperty,
|
|
29
|
+
ILSessionProperty,
|
|
30
|
+
ILServiceProperty,
|
|
31
|
+
ILSpokeProperty,
|
|
32
|
+
ILAccessRuleProperty,
|
|
33
|
+
ILSecureFileProperty,
|
|
34
|
+
ILQueueRealTimeInfo,
|
|
35
|
+
ILQueueFlow,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
# --- Exceptions ---
|
|
39
|
+
from .exception import (
|
|
40
|
+
ILException,
|
|
41
|
+
ILNoMsgException,
|
|
42
|
+
ILTimeoutException,
|
|
43
|
+
ILOperationException,
|
|
44
|
+
ILSessionException,
|
|
45
|
+
ILMsgTypeException,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
__all__ = [
|
|
49
|
+
# Admin
|
|
50
|
+
"ILAdminService",
|
|
51
|
+
"ILAdminQmgr",
|
|
52
|
+
"ILLogBrowser",
|
|
53
|
+
"ILQueueBrowser",
|
|
54
|
+
# QMgr / Queue
|
|
55
|
+
"ILQmgr",
|
|
56
|
+
"ILQueue",
|
|
57
|
+
# Message
|
|
58
|
+
"ILMsg",
|
|
59
|
+
"ILMsgUtil",
|
|
60
|
+
# Constants
|
|
61
|
+
"ILC",
|
|
62
|
+
"ILCC",
|
|
63
|
+
"ILRC",
|
|
64
|
+
"MatchOption",
|
|
65
|
+
# Properties
|
|
66
|
+
"DestItem",
|
|
67
|
+
"PartitionItem",
|
|
68
|
+
"ILQueueProperty",
|
|
69
|
+
"ILChannelProperty",
|
|
70
|
+
"ILChannelType",
|
|
71
|
+
"ILChannelStatus",
|
|
72
|
+
"ILChannelDirection",
|
|
73
|
+
"ILChannelSecurity",
|
|
74
|
+
"ILChannelBalanceMode",
|
|
75
|
+
"ILQmgrProperty",
|
|
76
|
+
"ILSessionProperty",
|
|
77
|
+
"ILServiceProperty",
|
|
78
|
+
"ILSpokeProperty",
|
|
79
|
+
"ILAccessRuleProperty",
|
|
80
|
+
"ILSecureFileProperty",
|
|
81
|
+
"ILQueueRealTimeInfo",
|
|
82
|
+
"ILQueueFlow",
|
|
83
|
+
# Exceptions
|
|
84
|
+
"ILException",
|
|
85
|
+
"ILNoMsgException",
|
|
86
|
+
"ILTimeoutException",
|
|
87
|
+
"ILOperationException",
|
|
88
|
+
"ILSessionException",
|
|
89
|
+
"ILMsgTypeException",
|
|
90
|
+
]
|