Akka.Streams.Tests.Actor.RequestStrategySubscriber.Receive C# (CSharp) Method

Receive() protected method

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