zeroc-ice 3.8.0__cp314-cp314-macosx_10_15_universal2.whl → 3.8.0.post1__cp314-cp314-macosx_10_15_universal2.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.
- Ice/BTEndpointType.py +7 -0
- Ice/BTSEndpointType.py +7 -0
- Ice/Blobject.py +1 -1
- Ice/Communicator.py +130 -118
- Ice/CompressBatch.py +12 -12
- Ice/Current.py +5 -6
- Ice/EndpointSelectionType.py +8 -8
- Ice/EventLoopAdapter.py +4 -4
- Ice/Exception.py +6 -8
- Ice/FormatType.py +8 -1
- Ice/Future.py +78 -78
- Ice/IcePyTypes.py +2 -0
- Ice/ImplicitContext.py +28 -35
- Ice/InitializationData.py +23 -22
- Ice/InvocationFuture.py +31 -34
- Ice/LocalException.py +1 -1
- Ice/LocalExceptions.py +82 -94
- Ice/LogMessageType.py +16 -15
- Ice/Logger.py +10 -10
- Ice/Object.py +22 -17
- Ice/ObjectAdapter.py +200 -167
- Ice/ObjectPrx.py +196 -202
- Ice/OperationMode.py +19 -14
- Ice/ProcessLogger.py +18 -2
- Ice/Properties.py +63 -79
- Ice/Proxy.py +73 -10
- Ice/ReplyStatus.py +42 -35
- Ice/SSLEndpointType.py +7 -0
- Ice/ServantLocator.py +30 -35
- Ice/SliceInfo.py +3 -3
- Ice/SlicedData.py +1 -1
- Ice/TCPEndpointType.py +7 -0
- Ice/ToStringMode.py +19 -19
- Ice/UDPEndpointType.py +7 -0
- Ice/URIEndpointType.py +7 -0
- Ice/UnknownSlicedValue.py +11 -3
- Ice/UserException.py +1 -1
- Ice/Util.py +27 -26
- Ice/Value.py +7 -7
- Ice/WSEndpointType.py +7 -0
- Ice/WSSEndpointType.py +7 -0
- Ice/__init__.py +2 -0
- Ice/iAPEndpointType.py +7 -0
- Ice/iAPSEndpointType.py +7 -0
- IceGrid/LoadSample.py +12 -12
- IceGrid/ServerState.py +29 -25
- IcePy-stubs/__init__.pyi +151 -152
- IcePy.cpython-314-darwin.so +0 -0
- {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/METADATA +1 -1
- {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/RECORD +53 -53
- {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +0 -0
- {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
- {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +0 -0
Ice/ServantLocator.py
CHANGED
|
@@ -8,28 +8,33 @@ from .Object import Object
|
|
|
8
8
|
|
|
9
9
|
class ServantLocator(ABC):
|
|
10
10
|
"""
|
|
11
|
-
|
|
11
|
+
An application-provided class that an object adapter uses to locate servants.
|
|
12
|
+
|
|
13
|
+
Notes
|
|
14
|
+
-----
|
|
15
|
+
For simple cases, you should consider using a default servant instead (see :func:`ObjectAdapter.addDefaultServant`).
|
|
12
16
|
"""
|
|
13
17
|
|
|
14
18
|
@abstractmethod
|
|
15
19
|
def locate(self, current: Current) -> tuple[Object | None, object | None]:
|
|
16
20
|
"""
|
|
17
|
-
|
|
21
|
+
Asks this servant locator to find and return a servant.
|
|
22
|
+
|
|
23
|
+
Notes
|
|
24
|
+
-----
|
|
25
|
+
The caller (the object adapter) does not insert the returned servant into its Active Servant Map.
|
|
26
|
+
This must be done by the servant locator implementation, if this is desired.
|
|
18
27
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
exception. If it does, that exception is marshaled back to the client. If the Slice definition for the corresponding
|
|
22
|
-
operation includes that user exception, the client receives that user exception; otherwise, the client receives
|
|
23
|
-
`UnknownUserException`.
|
|
28
|
+
The implementation can raise any exception, including :class:`UserException`.
|
|
29
|
+
The Ice runtime will marshal this exception in the response.
|
|
24
30
|
|
|
25
|
-
If
|
|
26
|
-
|
|
27
|
-
servant.
|
|
31
|
+
If you call :func:`locate` from your own code, you must also call :func:`finished` when you have finished using
|
|
32
|
+
the servant, provided that :func:`locate` did not return ``None``.
|
|
28
33
|
|
|
29
34
|
Parameters
|
|
30
35
|
----------
|
|
31
36
|
current : Current
|
|
32
|
-
Information about the
|
|
37
|
+
Information about the incoming request for which a servant is required.
|
|
33
38
|
|
|
34
39
|
Returns
|
|
35
40
|
-------
|
|
@@ -37,55 +42,45 @@ class ServantLocator(ABC):
|
|
|
37
42
|
|
|
38
43
|
A tuple containing the following:
|
|
39
44
|
- retval : Object or None
|
|
40
|
-
The located servant, or None if no suitable servant
|
|
45
|
+
The located servant, or ``None`` if no suitable servant was found.
|
|
41
46
|
- cookie : object | None
|
|
42
|
-
A "cookie" that will be passed to
|
|
43
|
-
|
|
44
|
-
Raises
|
|
45
|
-
------
|
|
46
|
-
UserException
|
|
47
|
-
The implementation can raise a `UserException` and the runtime will marshal it as the result of the invocation.
|
|
47
|
+
A "cookie" that will be passed to :func:`finished`.
|
|
48
48
|
"""
|
|
49
49
|
pass
|
|
50
50
|
|
|
51
51
|
@abstractmethod
|
|
52
52
|
def finished(self, current: Current, servant: Object, cookie: object | None):
|
|
53
53
|
"""
|
|
54
|
-
|
|
54
|
+
Notifies this servant locator that the dispatch on the servant returned by :func:`locate` is complete.
|
|
55
|
+
The object adapter calls this function only when :func:`locate` didn't return ``None``.
|
|
55
56
|
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
Notes
|
|
58
|
+
-----
|
|
58
59
|
|
|
59
|
-
The
|
|
60
|
-
|
|
61
|
-
exception
|
|
62
|
-
exception, the exception thrown by `finished` is marshaled back to the client.
|
|
60
|
+
The implementation can raise any exception, including :class:`UserException`.
|
|
61
|
+
The Ice runtime will marshal this exception in the response. If both the dispatch and :func:`finished` raise
|
|
62
|
+
an exception, the exception raised by :func:`finished` prevails and is marshaled back to the client.
|
|
63
63
|
|
|
64
64
|
Parameters
|
|
65
65
|
----------
|
|
66
66
|
current : Current
|
|
67
|
-
Information about the
|
|
67
|
+
Information about the incoming request for which a servant was located.
|
|
68
68
|
servant : Object
|
|
69
|
-
The servant that was returned by
|
|
69
|
+
The servant that was returned by :func:`locate`.
|
|
70
70
|
cookie : object | None
|
|
71
|
-
The cookie that was returned by
|
|
72
|
-
|
|
73
|
-
Raises
|
|
74
|
-
------
|
|
75
|
-
UserException
|
|
76
|
-
The implementation can raise a `UserException` and the runtime will marshal it as the result of the invocation.
|
|
71
|
+
The cookie that was returned by :func:`locate`.
|
|
77
72
|
"""
|
|
78
73
|
pass
|
|
79
74
|
|
|
80
75
|
@abstractmethod
|
|
81
76
|
def deactivate(self, category: str):
|
|
82
77
|
"""
|
|
83
|
-
|
|
78
|
+
Notifies this servant locator that the object adapter in which it's installed is being deactivated.
|
|
84
79
|
|
|
85
80
|
Parameters
|
|
86
81
|
----------
|
|
87
82
|
category : str
|
|
88
|
-
|
|
83
|
+
The category with which this servant locator was registered.
|
|
89
84
|
"""
|
|
90
85
|
pass
|
|
91
86
|
|
Ice/SliceInfo.py
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
class SliceInfo:
|
|
5
5
|
"""
|
|
6
|
-
Encapsulates the details of a slice with an unknown type.
|
|
6
|
+
Encapsulates the details of a class slice with an unknown type.
|
|
7
7
|
|
|
8
8
|
Attributes
|
|
9
9
|
----------
|
|
10
10
|
typeId : str
|
|
11
|
-
The Slice type ID for this slice.
|
|
11
|
+
The Slice type ID for this slice. It's empty when ``compactId`` is set (not ``-1``).
|
|
12
12
|
compactId : int
|
|
13
|
-
The Slice compact type ID for this slice.
|
|
13
|
+
The Slice compact type ID for this slice, or ``-1`` if the slice has no compact ID.
|
|
14
14
|
bytes : bytes
|
|
15
15
|
The encoded bytes for this slice, including the leading size integer.
|
|
16
16
|
hasOptionalMembers : bool
|
Ice/SlicedData.py
CHANGED
Ice/TCPEndpointType.py
CHANGED
Ice/ToStringMode.py
CHANGED
|
@@ -5,30 +5,30 @@ from enum import Enum
|
|
|
5
5
|
|
|
6
6
|
class ToStringMode(Enum):
|
|
7
7
|
"""
|
|
8
|
-
The output mode for xxxToString
|
|
9
|
-
the string is the same for all modes: you don't need to specify an
|
|
10
|
-
string.
|
|
11
|
-
|
|
12
|
-
Enumerators:
|
|
13
|
-
|
|
14
|
-
- Unicode:
|
|
15
|
-
Characters with ordinal values greater than 127 are kept as-is in the resulting string. Non-printable ASCII
|
|
16
|
-
characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or \\unnnn.
|
|
17
|
-
|
|
18
|
-
- ASCII:
|
|
19
|
-
Characters with ordinal values greater than 127 are encoded as universal character names in the resulting
|
|
20
|
-
string \\unnnn for BMP characters and \\Unnnnnnnn for non-BMP characters. Non-printable ASCII characters
|
|
21
|
-
with ordinal values 127 and below are encoded as \\t, \\n (etc.) or \\unnnn.
|
|
22
|
-
|
|
23
|
-
- Compat:
|
|
24
|
-
Characters with ordinal values greater than 127 are encoded as a sequence of UTF-8 bytes using octal escapes.
|
|
25
|
-
Characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or an octal escape. Use this mode
|
|
26
|
-
to generate strings compatible with Ice 3.6 and earlier.
|
|
8
|
+
The output mode for xxxToString functions such as :func:`identityToString`.
|
|
9
|
+
The actual encoding format for the string is the same for all modes: you don't need to specify an
|
|
10
|
+
encoding format or mode when reading such a string.
|
|
27
11
|
"""
|
|
28
12
|
|
|
29
13
|
Unicode = 0
|
|
14
|
+
"""
|
|
15
|
+
Characters with ordinal values greater than 127 are kept as-is in the resulting string.
|
|
16
|
+
Non-printable ASCII characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or \\unnnn.
|
|
17
|
+
"""
|
|
18
|
+
|
|
30
19
|
ASCII = 1
|
|
20
|
+
"""
|
|
21
|
+
Characters with ordinal values greater than 127 are encoded as universal character names in the resulting string:
|
|
22
|
+
\\unnnn for BMP characters and \\Unnnnnnnn for non-BMP characters.
|
|
23
|
+
Non-printable ASCII characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or \\unnnn.
|
|
24
|
+
"""
|
|
25
|
+
|
|
31
26
|
Compat = 2
|
|
27
|
+
"""
|
|
28
|
+
Characters with ordinal values greater than 127 are encoded as a sequence of UTF-8 bytes using octal escapes.
|
|
29
|
+
Characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or an octal escape.
|
|
30
|
+
Use this mode to generate strings compatible with Ice 3.6 and earlier.
|
|
31
|
+
"""
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
__all__ = ["ToStringMode"]
|
Ice/UDPEndpointType.py
CHANGED
Ice/URIEndpointType.py
CHANGED
Ice/UnknownSlicedValue.py
CHANGED
|
@@ -7,18 +7,26 @@ from .Value import Value
|
|
|
7
7
|
|
|
8
8
|
class UnknownSlicedValue(Value):
|
|
9
9
|
"""
|
|
10
|
-
|
|
10
|
+
Represents an instance of an unknown class.
|
|
11
11
|
|
|
12
12
|
Attributes
|
|
13
13
|
----------
|
|
14
14
|
unknownTypeId : str
|
|
15
|
-
The type ID of the unknown
|
|
15
|
+
The Slice type ID of the unknown value.
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
_ice_type = None # Will be set after class definition
|
|
19
19
|
unknownTypeId: str
|
|
20
20
|
|
|
21
|
-
def ice_id(self):
|
|
21
|
+
def ice_id(self) -> str:
|
|
22
|
+
"""
|
|
23
|
+
Returns the Slice type ID associated with this instance.
|
|
24
|
+
|
|
25
|
+
Returns
|
|
26
|
+
-------
|
|
27
|
+
str
|
|
28
|
+
The Slice type ID of the unknown value.
|
|
29
|
+
"""
|
|
22
30
|
return self.unknownTypeId
|
|
23
31
|
|
|
24
32
|
|
Ice/UserException.py
CHANGED
Ice/Util.py
CHANGED
|
@@ -36,18 +36,20 @@ def initialize(
|
|
|
36
36
|
initData: InitializationData | None = None,
|
|
37
37
|
) -> Communicator:
|
|
38
38
|
"""
|
|
39
|
-
Creates a new communicator.
|
|
40
|
-
|
|
39
|
+
Creates a new communicator.
|
|
40
|
+
|
|
41
|
+
This function is provided for backwards compatibility.
|
|
42
|
+
New code should call the :class:`Communicator` constructor directly.
|
|
41
43
|
|
|
42
44
|
Parameters
|
|
43
45
|
----------
|
|
44
|
-
args : list
|
|
46
|
+
args : list[str] | None, optional
|
|
45
47
|
The command-line arguments.
|
|
46
|
-
eventLoop : asyncio.AbstractEventLoop, optional
|
|
47
|
-
An asyncio event loop used to run coroutines and wrap futures.
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
eventLoop : asyncio.AbstractEventLoop | None, optional
|
|
49
|
+
An asyncio event loop used to run coroutines and wrap futures.
|
|
50
|
+
initData : InitializationData | None, optional
|
|
51
|
+
Options for the new communicator.
|
|
52
|
+
This argument is mutually exclusive with both the ``args`` and ``eventLoop`` argument.
|
|
51
53
|
|
|
52
54
|
Returns
|
|
53
55
|
-------
|
|
@@ -59,36 +61,37 @@ def initialize(
|
|
|
59
61
|
|
|
60
62
|
def identityToString(identity: Identity, toStringMode: ToStringMode | None = None) -> str:
|
|
61
63
|
"""
|
|
62
|
-
|
|
64
|
+
Converts an Identity into a string using the specified mode.
|
|
63
65
|
|
|
64
66
|
Parameters
|
|
65
67
|
----------
|
|
66
68
|
identity : Ice.Identity
|
|
67
|
-
The
|
|
68
|
-
toStringMode : Ice.ToStringMode, optional
|
|
69
|
-
Specifies
|
|
69
|
+
The identity.
|
|
70
|
+
toStringMode : Ice.ToStringMode | None, optional
|
|
71
|
+
Specifies how to handle non-ASCII characters and non-printable ASCII characters.
|
|
72
|
+
The default is :const:`Ice.ToStringMode.Unicode`.
|
|
70
73
|
|
|
71
74
|
Returns
|
|
72
75
|
-------
|
|
73
76
|
str
|
|
74
|
-
The
|
|
77
|
+
The stringified identity.
|
|
75
78
|
"""
|
|
76
79
|
return IcePy.identityToString(identity, toStringMode)
|
|
77
80
|
|
|
78
81
|
|
|
79
82
|
def stringToIdentity(str: str) -> Identity:
|
|
80
83
|
"""
|
|
81
|
-
|
|
84
|
+
Converts a stringified identity into an Identity.
|
|
82
85
|
|
|
83
86
|
Parameters
|
|
84
87
|
----------
|
|
85
88
|
str : str
|
|
86
|
-
The
|
|
89
|
+
The stringified identity.
|
|
87
90
|
|
|
88
91
|
Returns
|
|
89
92
|
-------
|
|
90
93
|
Identity
|
|
91
|
-
|
|
94
|
+
An Identity created from the provided string.
|
|
92
95
|
|
|
93
96
|
Raises
|
|
94
97
|
------
|
|
@@ -102,14 +105,14 @@ def createProperties(args: list[str] | None = None, defaults: Properties | None
|
|
|
102
105
|
"""
|
|
103
106
|
Creates a property set initialized from command-line arguments and a default property set.
|
|
104
107
|
|
|
105
|
-
This function is provided for backwards compatibility.
|
|
106
|
-
directly.
|
|
108
|
+
This function is provided for backwards compatibility.
|
|
109
|
+
New code should call the :class:`Properties` constructor directly.
|
|
107
110
|
|
|
108
111
|
Parameters
|
|
109
112
|
----------
|
|
110
|
-
args : list[str], optional
|
|
113
|
+
args : list[str] | None, optional
|
|
111
114
|
The command-line arguments.
|
|
112
|
-
defaults : Properties, optional
|
|
115
|
+
defaults : Properties | None, optional
|
|
113
116
|
Default values for the new property set.
|
|
114
117
|
|
|
115
118
|
Returns
|
|
@@ -122,15 +125,13 @@ def createProperties(args: list[str] | None = None, defaults: Properties | None
|
|
|
122
125
|
|
|
123
126
|
def getSliceDir() -> str | None:
|
|
124
127
|
"""
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
This helper function locates the installation directory for the Ice Slice files,
|
|
128
|
-
typically used to configure include paths for Slice compilers.
|
|
128
|
+
This helper function locates the installation directory for the Ice Slice files, and returns its path.
|
|
129
|
+
This path is typically used to configure include paths for Slice compilers.
|
|
129
130
|
|
|
130
131
|
Returns
|
|
131
132
|
-------
|
|
132
|
-
str
|
|
133
|
-
The absolute path
|
|
133
|
+
str | None
|
|
134
|
+
The absolute path of the directory containing the Ice Slice files, or ``None`` if the directory cannot be found.
|
|
134
135
|
"""
|
|
135
136
|
|
|
136
137
|
# Get the parent of the directory containing this file (__init__.py).
|
Ice/Value.py
CHANGED
|
@@ -12,12 +12,12 @@ class Value:
|
|
|
12
12
|
|
|
13
13
|
def ice_id(self) -> str:
|
|
14
14
|
"""
|
|
15
|
-
|
|
15
|
+
Returns the Slice type ID of the most-derived class supported by this object.
|
|
16
16
|
|
|
17
17
|
Returns
|
|
18
18
|
-------
|
|
19
19
|
str
|
|
20
|
-
The type ID.
|
|
20
|
+
The Slice type ID.
|
|
21
21
|
"""
|
|
22
22
|
# Call ice_staticId() on self to get the value from the most-derived class.
|
|
23
23
|
return self.ice_staticId()
|
|
@@ -25,12 +25,12 @@ class Value:
|
|
|
25
25
|
@staticmethod
|
|
26
26
|
def ice_staticId() -> str:
|
|
27
27
|
"""
|
|
28
|
-
|
|
28
|
+
Returns the Slice type ID of this type.
|
|
29
29
|
|
|
30
30
|
Returns
|
|
31
31
|
-------
|
|
32
32
|
str
|
|
33
|
-
The
|
|
33
|
+
The return value is always ``::Ice::Object``.
|
|
34
34
|
"""
|
|
35
35
|
return "::Ice::Object"
|
|
36
36
|
|
|
@@ -45,13 +45,13 @@ class Value:
|
|
|
45
45
|
|
|
46
46
|
def ice_getSlicedData(self) -> SlicedData | None:
|
|
47
47
|
"""
|
|
48
|
-
|
|
49
|
-
un-marshaling of the value. Return None otherwise.
|
|
48
|
+
Gets the sliced data associated with this instance.
|
|
50
49
|
|
|
51
50
|
Returns
|
|
52
51
|
-------
|
|
53
52
|
SlicedData | None
|
|
54
|
-
|
|
53
|
+
If this value has a preserved-slice base class and has been sliced during unmarshaling, this returns the
|
|
54
|
+
sliced data; otherwise this returns ``None``.
|
|
55
55
|
"""
|
|
56
56
|
return getattr(self, "_ice_slicedData", None)
|
|
57
57
|
|
Ice/WSEndpointType.py
CHANGED
Ice/WSSEndpointType.py
CHANGED
Ice/__init__.py
CHANGED
|
@@ -43,6 +43,7 @@ from .IcePyTypes import (
|
|
|
43
43
|
BatchRequest,
|
|
44
44
|
Connection,
|
|
45
45
|
ConnectionInfo,
|
|
46
|
+
Endpoint,
|
|
46
47
|
EndpointInfo,
|
|
47
48
|
IPConnectionInfo,
|
|
48
49
|
IPEndpointInfo,
|
|
@@ -213,6 +214,7 @@ __all__ = [
|
|
|
213
214
|
"DatagramLimitException",
|
|
214
215
|
"DispatchException",
|
|
215
216
|
"EncodingVersion",
|
|
217
|
+
"Endpoint",
|
|
216
218
|
"EndpointInfo",
|
|
217
219
|
"EndpointSelectionType",
|
|
218
220
|
"EventLoopAdapter",
|
Ice/iAPEndpointType.py
CHANGED
Ice/iAPSEndpointType.py
CHANGED
IceGrid/LoadSample.py
CHANGED
|
@@ -11,25 +11,25 @@ class LoadSample(Enum):
|
|
|
11
11
|
"""
|
|
12
12
|
Determines which load sampling interval to use.
|
|
13
13
|
|
|
14
|
-
Enumerators:
|
|
15
|
-
|
|
16
|
-
- LoadSample1:
|
|
17
|
-
Sample every minute.
|
|
18
|
-
|
|
19
|
-
- LoadSample5:
|
|
20
|
-
Sample every five minutes.
|
|
21
|
-
|
|
22
|
-
- LoadSample15:
|
|
23
|
-
Sample every fifteen minutes.
|
|
24
|
-
|
|
25
14
|
Notes
|
|
26
15
|
-----
|
|
27
16
|
The Slice compiler generated this enum class from Slice enumeration ``::IceGrid::LoadSample``.
|
|
28
17
|
"""
|
|
29
|
-
|
|
18
|
+
|
|
30
19
|
LoadSample1 = 0
|
|
20
|
+
"""
|
|
21
|
+
Sample every minute.
|
|
22
|
+
"""
|
|
23
|
+
|
|
31
24
|
LoadSample5 = 1
|
|
25
|
+
"""
|
|
26
|
+
Sample every five minutes.
|
|
27
|
+
"""
|
|
28
|
+
|
|
32
29
|
LoadSample15 = 2
|
|
30
|
+
"""
|
|
31
|
+
Sample every fifteen minutes.
|
|
32
|
+
"""
|
|
33
33
|
|
|
34
34
|
_IceGrid_LoadSample_t = IcePy.defineEnum(
|
|
35
35
|
"::IceGrid::LoadSample",
|
IceGrid/ServerState.py
CHANGED
|
@@ -11,42 +11,46 @@ class ServerState(Enum):
|
|
|
11
11
|
"""
|
|
12
12
|
Represents the state of a server.
|
|
13
13
|
|
|
14
|
-
Enumerators:
|
|
15
|
-
|
|
16
|
-
- Inactive:
|
|
17
|
-
The server is not running.
|
|
18
|
-
|
|
19
|
-
- Activating:
|
|
20
|
-
The server is being activated and will change to the active state when the registered server object adapters
|
|
21
|
-
are activated or to the activation timed out state if the activation timeout expires.
|
|
22
|
-
|
|
23
|
-
- ActivationTimedOut:
|
|
24
|
-
The server activation timed out.
|
|
25
|
-
|
|
26
|
-
- Active:
|
|
27
|
-
The server is running.
|
|
28
|
-
|
|
29
|
-
- Deactivating:
|
|
30
|
-
The server is being deactivated.
|
|
31
|
-
|
|
32
|
-
- Destroying:
|
|
33
|
-
The server is being destroyed.
|
|
34
|
-
|
|
35
|
-
- Destroyed:
|
|
36
|
-
The server is destroyed.
|
|
37
|
-
|
|
38
14
|
Notes
|
|
39
15
|
-----
|
|
40
16
|
The Slice compiler generated this enum class from Slice enumeration ``::IceGrid::ServerState``.
|
|
41
17
|
"""
|
|
42
|
-
|
|
18
|
+
|
|
43
19
|
Inactive = 0
|
|
20
|
+
"""
|
|
21
|
+
The server is not running.
|
|
22
|
+
"""
|
|
23
|
+
|
|
44
24
|
Activating = 1
|
|
25
|
+
"""
|
|
26
|
+
The server is being activated and will change to the active state when the registered server object adapters
|
|
27
|
+
are activated or to the activation timed out state if the activation timeout expires.
|
|
28
|
+
"""
|
|
29
|
+
|
|
45
30
|
ActivationTimedOut = 2
|
|
31
|
+
"""
|
|
32
|
+
The server activation timed out.
|
|
33
|
+
"""
|
|
34
|
+
|
|
46
35
|
Active = 3
|
|
36
|
+
"""
|
|
37
|
+
The server is running.
|
|
38
|
+
"""
|
|
39
|
+
|
|
47
40
|
Deactivating = 4
|
|
41
|
+
"""
|
|
42
|
+
The server is being deactivated.
|
|
43
|
+
"""
|
|
44
|
+
|
|
48
45
|
Destroying = 5
|
|
46
|
+
"""
|
|
47
|
+
The server is being destroyed.
|
|
48
|
+
"""
|
|
49
|
+
|
|
49
50
|
Destroyed = 6
|
|
51
|
+
"""
|
|
52
|
+
The server is destroyed.
|
|
53
|
+
"""
|
|
50
54
|
|
|
51
55
|
_IceGrid_ServerState_t = IcePy.defineEnum(
|
|
52
56
|
"::IceGrid::ServerState",
|