Click or drag to resize

LinkState Enumeration

Defines correct state of the link.

Namespace:  KASAPIv2
Assembly:  KAS-API-v2 (in KAS-API-v2.dll) Version: KAS API v2
Syntax
C#
public enum LinkState
Request Example View Source
Members
  Member nameValueDescription
None0Initial and an invalid state. It must never be normally used.
Available1Module is available for the links.
Locked2 Module is unavailable for the link because of another module on the same node has already established a link.
Linking3 Module has initiated an outgoing link request and expecting for it to be accepted.
Linked4Module is linked to another module.
AcceptingLinks5Module is ready to accept a link and may accept the request.
RejectingLinks6Module cannot link and will reject any request.
NodeIsBlocked7 The attach node, allocated to the module, is occupied by another part, which doesn't support linking.
Remarks
Each 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