Akka.Remote.Transport.Transport.ManagementCommand C# (CSharp) 메소드

ManagementCommand() 공개 메소드

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.
리턴 Task
        public virtual Task<bool> ManagementCommand(object message)
        {
            return Task.Run(() => true);
        }
    }