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

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