Transport..::..ManagementCommand 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)

Syntax


public virtual Task<bool> ManagementCommand(
	Object message
)
Public Overridable Function ManagementCommand ( _
	message As Object _
) As Task(Of Boolean)
public:
virtual Task<bool^>^ ManagementCommand(
	Object^ message
)

Parameters

message
Type: Object
Command message to send to the transport.

Return Value

A Task that succeeeds whent he command was handled or dropped.