zeroc-ice 3.8.0__cp313-cp313-macosx_10_13_universal2.whl → 3.8.0.post1__cp313-cp313-macosx_10_13_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.
Files changed (53) hide show
  1. Ice/BTEndpointType.py +7 -0
  2. Ice/BTSEndpointType.py +7 -0
  3. Ice/Blobject.py +1 -1
  4. Ice/Communicator.py +130 -118
  5. Ice/CompressBatch.py +12 -12
  6. Ice/Current.py +5 -6
  7. Ice/EndpointSelectionType.py +8 -8
  8. Ice/EventLoopAdapter.py +4 -4
  9. Ice/Exception.py +6 -8
  10. Ice/FormatType.py +8 -1
  11. Ice/Future.py +78 -78
  12. Ice/IcePyTypes.py +2 -0
  13. Ice/ImplicitContext.py +28 -35
  14. Ice/InitializationData.py +23 -22
  15. Ice/InvocationFuture.py +31 -34
  16. Ice/LocalException.py +1 -1
  17. Ice/LocalExceptions.py +82 -94
  18. Ice/LogMessageType.py +16 -15
  19. Ice/Logger.py +10 -10
  20. Ice/Object.py +22 -17
  21. Ice/ObjectAdapter.py +200 -167
  22. Ice/ObjectPrx.py +196 -202
  23. Ice/OperationMode.py +19 -14
  24. Ice/ProcessLogger.py +18 -2
  25. Ice/Properties.py +63 -79
  26. Ice/Proxy.py +73 -10
  27. Ice/ReplyStatus.py +42 -35
  28. Ice/SSLEndpointType.py +7 -0
  29. Ice/ServantLocator.py +30 -35
  30. Ice/SliceInfo.py +3 -3
  31. Ice/SlicedData.py +1 -1
  32. Ice/TCPEndpointType.py +7 -0
  33. Ice/ToStringMode.py +19 -19
  34. Ice/UDPEndpointType.py +7 -0
  35. Ice/URIEndpointType.py +7 -0
  36. Ice/UnknownSlicedValue.py +11 -3
  37. Ice/UserException.py +1 -1
  38. Ice/Util.py +27 -26
  39. Ice/Value.py +7 -7
  40. Ice/WSEndpointType.py +7 -0
  41. Ice/WSSEndpointType.py +7 -0
  42. Ice/__init__.py +2 -0
  43. Ice/iAPEndpointType.py +7 -0
  44. Ice/iAPSEndpointType.py +7 -0
  45. IceGrid/LoadSample.py +12 -12
  46. IceGrid/ServerState.py +29 -25
  47. IcePy-stubs/__init__.pyi +151 -152
  48. IcePy.cpython-313-darwin.so +0 -0
  49. {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/METADATA +1 -1
  50. {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/RECORD +53 -53
  51. {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +0 -0
  52. {zeroc_ice-3.8.0.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
  53. {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
- A servant locator is called by an object adapter to locate a servant that is not found in its active servant map.
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
- Called before a request is dispatched if a servant cannot be found in the object adapter's active servant map.
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
- Note that the object adapter does not automatically insert the returned servant into its active servant map.
20
- This must be done by the servant locator implementation, if desired. The `locate` method can throw any user
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 `locate` throws any exception, the Ice runtime does not call `finished`. If you call `locate` from your own code,
26
- you must also call `finished` when you have finished using the servant, provided that `locate` returned a non-null
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 current operation for which a servant is required.
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 has been found.
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 `finished`.
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
- Called by the object adapter after a request has been made.
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
- This operation is only called if `locate` was called prior to the request and returned a non-null servant.
57
- This operation can be used for cleanup purposes after a request.
57
+ Notes
58
+ -----
58
59
 
59
- The `finished` method can throw any user exception. If it does, that exception is marshaled back to the client.
60
- If the Slice definition for the corresponding operation includes that user exception, the client receives that user
61
- exception; otherwise, the client receives `UnknownUserException`. If both the operation and `finished` throw an
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 current operation call for which a servant was located by `locate`.
67
+ Information about the incoming request for which a servant was located.
68
68
  servant : Object
69
- The servant that was returned by `locate`.
69
+ The servant that was returned by :func:`locate`.
70
70
  cookie : object | None
71
- The cookie that was returned by `locate`.
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
- Called when the object adapter in which this servant locator is installed is destroyed.
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
- Indicates for which category the servant locator is being deactivated.
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
@@ -8,7 +8,7 @@ class SlicedData:
8
8
  Attributes
9
9
  ----------
10
10
  slices : tuple[SliceInfo, ...]
11
- The details of each slice, in order of most-derived to least-derived.
11
+ The slices of the unknown class, in order of most-derived to least-derived.
12
12
  """
13
13
 
14
14
  pass
Ice/TCPEndpointType.py CHANGED
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  TCPEndpointType = 1
10
+ """
11
+ Identifies TCP endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::TCPEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["TCPEndpointType"]
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 methods such as identityToString and proxyToString. The actual encoding format for
9
- the string is the same for all modes: you don't need to specify an encoding format or mode when reading such a
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
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  UDPEndpointType = 3
10
+ """
11
+ Identifies UDP endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::UDPEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["UDPEndpointType"]
Ice/URIEndpointType.py CHANGED
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  URIEndpointType = 0
10
+ """
11
+ Identifies endpoints marshaled as URI strings.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::URIEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["URIEndpointType"]
Ice/UnknownSlicedValue.py CHANGED
@@ -7,18 +7,26 @@ from .Value import Value
7
7
 
8
8
  class UnknownSlicedValue(Value):
9
9
  """
10
- Unknown sliced value holds an instance of an unknown Slice class type.
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 Slice class type.
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
@@ -5,7 +5,7 @@ from .Exception import Exception as IceException
5
5
 
6
6
  class UserException(IceException):
7
7
  """
8
- The base class for all user-defined exceptions.
8
+ Base class for all exceptions defined in Slice.
9
9
  """
10
10
 
11
11
  def __str__(self):
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. This function is provided for backwards compatibility. New code should call the
40
- :class:`Communicator` constructor directly.
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 of str, optional
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. This argument and the `initData` argument are
48
- mutually exclusive.
49
- initData : InitializationData, optional
50
- Options for the new communicator. This argument and the `args` argument are mutually exclusive.
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
- Convert an object identity to a string.
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 object identity to convert.
68
- toStringMode : Ice.ToStringMode, optional
69
- Specifies if and how non-printable ASCII characters are escaped in the result.
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 string representation of the object identity.
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
- Convert a string to an object identity.
84
+ Converts a stringified identity into an Identity.
82
85
 
83
86
  Parameters
84
87
  ----------
85
88
  str : str
86
- The string to convert.
89
+ The stringified identity.
87
90
 
88
91
  Returns
89
92
  -------
90
93
  Identity
91
- The converted object identity.
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. New code should call the :class:`Properties` constructor
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
- Returns the path to the directory where the Ice Slice files are installed.
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 or None
133
- The absolute path to the directory containing the Ice Slice files, or ``None`` if the directory cannot be found.
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
- Obtain the type ID corresponding to the most-derived Slice interface supported by the target object.
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
- Obtain the type ID of this Slice class or interface.
28
+ Returns the Slice type ID of this type.
29
29
 
30
30
  Returns
31
31
  -------
32
32
  str
33
- The type ID.
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
- Return the sliced data if the value has a preserved-slice base class and has been sliced during
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
- The sliced data or None.
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
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  WSEndpointType = 4
10
+ """
11
+ Identifies TCP-based WebSocket endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::WSEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["WSEndpointType"]
Ice/WSSEndpointType.py CHANGED
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  WSSEndpointType = 5
10
+ """
11
+ Identifies SSL-based WebSocket endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::WSSEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["WSSEndpointType"]
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
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  iAPEndpointType = 8
10
+ """
11
+ Identifies iAP-based endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::iAPEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["iAPEndpointType"]
Ice/iAPSEndpointType.py CHANGED
@@ -7,5 +7,12 @@ import IcePy
7
7
 
8
8
 
9
9
  iAPSEndpointType = 9
10
+ """
11
+ Identifies SSL iAP-based endpoints.
12
+
13
+ Notes
14
+ -----
15
+ The Slice compiler generated this constant from Slice constant ``::Ice::iAPSEndpointType``.
16
+ """
10
17
 
11
18
  __all__ = ["iAPSEndpointType"]
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",