| TransportManagementCommand Method |
This method allows upper layers to send management commands to the transport. It is the responsibility of the sender to
send appropriate commands to different transport implementations. Unknown commands will be ignored.
Namespace:
Akka.Remote.Transport
Assembly:
Akka.Remote (in Akka.Remote.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public virtual Task<bool> ManagementCommand(
Object message
)
abstract ManagementCommand :
message : Object -> Task<bool>
override ManagementCommand :
message : Object -> Task<bool>
Parameters
- message
- Type: SystemObject
Command message to send to the transport.
Return Value
Type:
TaskBooleanA Task that succeeds when the command was handled or dropped.
See Also