Akka.Cluster.ClusterDomainEventPublisher.Unsubscribe C# (CSharp) Method

Unsubscribe() private method

private Unsubscribe ( IActorRef subscriber, Type to ) : void
subscriber IActorRef
to System.Type
return void
        private void Unsubscribe(IActorRef subscriber, Type to)
        {
            if (to == null) _eventStream.Unsubscribe(subscriber);
            else _eventStream.Unsubscribe(subscriber, to);
        }