C# 클래스 Akka.Routing.Router

파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 메소드들

메소드 설명
AddRoutee ( ActorSelection routee ) : Router

Create a new instance with one more routee and the same RoutingLogic.

AddRoutee ( IActorRef routee ) : Router

Create a new instance with one more routee and the same RoutingLogic.

AddRoutee ( Routee routee ) : Router

Create a new instance with one more routee and the same RoutingLogic.

RemoveRoutee ( ActorSelection routee ) : Router

Create a new instance without the specified routee.

RemoveRoutee ( IActorRef routee ) : Router

Create a new instance without the specified routee.

RemoveRoutee ( Routee routee ) : Router

Create a new instance without the specified routee.

Route ( object message, IActorRef sender ) : void
Router ( RoutingLogic logic ) : System.Collections.Generic
Router ( RoutingLogic logic, IActorRef routee ) : System.Collections.Generic
WithRoutees ( ) : Router

Create a new instance with the specified routees and the same RoutingLogic.

보호된 메소드들

메소드 설명
Send ( Routee routee, object message, IActorRef sender ) : void

비공개 메소드들

메소드 설명
UnWrap ( object message ) : object

메소드 상세

AddRoutee() 공개 메소드

Create a new instance with one more routee and the same RoutingLogic.
public AddRoutee ( ActorSelection routee ) : Router
routee Akka.Actor.ActorSelection
리턴 Router

AddRoutee() 공개 메소드

Create a new instance with one more routee and the same RoutingLogic.
public AddRoutee ( IActorRef routee ) : Router
routee IActorRef
리턴 Router

AddRoutee() 공개 메소드

Create a new instance with one more routee and the same RoutingLogic.
public AddRoutee ( Routee routee ) : Router
routee Routee
리턴 Router

RemoveRoutee() 공개 메소드

Create a new instance without the specified routee.
public RemoveRoutee ( ActorSelection routee ) : Router
routee Akka.Actor.ActorSelection
리턴 Router

RemoveRoutee() 공개 메소드

Create a new instance without the specified routee.
public RemoveRoutee ( IActorRef routee ) : Router
routee IActorRef
리턴 Router

RemoveRoutee() 공개 메소드

Create a new instance without the specified routee.
public RemoveRoutee ( Routee routee ) : Router
routee Routee
리턴 Router

Route() 공개 메소드

public Route ( object message, IActorRef sender ) : void
message object
sender IActorRef
리턴 void

Router() 공개 메소드

public Router ( RoutingLogic logic ) : System.Collections.Generic
logic RoutingLogic
리턴 System.Collections.Generic

Router() 공개 메소드

public Router ( RoutingLogic logic, IActorRef routee ) : System.Collections.Generic
logic RoutingLogic
routee IActorRef
리턴 System.Collections.Generic

Send() 보호된 메소드

protected Send ( Routee routee, object message, IActorRef sender ) : void
routee Routee
message object
sender IActorRef
리턴 void

WithRoutees() 공개 메소드

Create a new instance with the specified routees and the same RoutingLogic.
public WithRoutees ( ) : Router
리턴 Router