Akka.Remote.Transport.Transport.ManagementCommand C# (CSharp) Method

ManagementCommand() public 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.
public ManagementCommand ( object message ) : Task
message object Command message to send to the transport.
return Task
        public virtual Task<bool> ManagementCommand(object message)
        {
            return Task.Run(() => true);
        }
    }