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

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