コード例 #1
0
ファイル: Router.cs プロジェクト: supadmins/akka.net
 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
ファイル: RouterConfig.cs プロジェクト: jweimann/akka.net
 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
ファイル: Router.cs プロジェクト: rodrigovidal/akka.net
 protected bool Equals(ActorRefRoutee other)
 {
     return Equals(Actor, other.Actor);
 }