Akka.Streams.Tests.Actor.RequestStrategySubscriber.Receive C# (CSharp) 메소드

Receive() 보호된 메소드

protected Receive ( object message ) : bool
message object
리턴 bool
        protected override bool Receive(object message)
        {
            return message.Match()
                .With<OnNext>(_probe.Tell)
                .With<OnComplete>(_probe.Tell)
                .WasHandled;
        }