Exemplo n.º 1
0
 protected bool Equals(ActorRefRoutee other)
 {
     return(Equals(Actor, other.Actor));
 }
Exemplo n.º 2
0
        public virtual Routee NewRoutee(Props routeeProps, IActorContext context)
        {
            var routee = new ActorRefRoutee(context.ActorOf(EnrichWithPoolDispatcher(routeeProps, context)));

            return(routee);
        }
Exemplo n.º 3
0
 public Routee NewRoutee(Props routeeProps, IActorContext context)
 {
     var routee = new ActorRefRoutee(context.ActorOf(EnrichWithPoolDispatcher(routeeProps, context)));
     return routee;
 }
Exemplo n.º 4
0
 /// <inheritdoc/>
 protected bool Equals(ActorRefRoutee other) => Equals(Actor, other.Actor);
Exemplo n.º 5
0
 protected bool Equals(ActorRefRoutee other)
 {
     return Equals(Actor, other.Actor);
 }