 | LinkState Enumeration |
Defines correct state of the link.
Namespace:
KASAPIv2
Assembly:
KAS-API-v2 (in KAS-API-v2.dll) Version: KAS API v2
Syntax
Members
| Member name | Value | Description |
---|
| None | 0 | Initial and an invalid state. It must never be normally used. |
| Available | 1 | Module is available for the links. |
| Locked | 2 |
Module is unavailable for the link because of another module on the same node has already
established a link.
|
| Linking | 3 |
Module has initiated an outgoing link request and expecting for it to be accepted.
|
| Linked | 4 | Module is linked to another module. |
| AcceptingLinks | 5 | Module is ready to accept a link and may accept the request. |
| RejectingLinks | 6 | Module cannot link and will reject any request. |
| NodeIsBlocked | 7 |
The attach node, allocated to the module, is occupied by another part, which doesn't support
linking.
|
RemarksEach implementation defines own state transition model. E.g.
ILinkSource or
ILinkTarget. In every state the module can only
handle a very specific set of actions. Such approach helps keeping module logic more clear and
granular.
See Also