IAgentMessageReceivable<'Msg> Type
Interface for receiving agent messages.
Instance members
| Instance member |
Description
|
Full Usage:
this.Complete
Modifiers: abstract |
Notifies the agent that no more messages will be sent. |
Full Usage:
this.Count
Returns: int
Modifiers: abstract |
Gets the number of messages remaining in the agent's buffer.
|
Full Usage:
this.IsCancelled
Returns: bool
Modifiers: abstract |
Returns true if the agent has been cancelled; otherwise, false.
|
Full Usage:
this.Receive
Returns: 'Msg
Modifiers: abstract |
Receives a message from the agent.
|
B2R2