C# 클래스 Akka.Routing.TailChoppingGroup

A router group that selects a random routee, then waits an interval before sending to a different routee. The first response is used and the remaining discarded.
상속: Akka.Routing.Group
파일 보기 프로젝트 열기: rogeralsing/akka.net

공개 메소드들

메소드 설명
CreateRouter ( ActorSystem system ) : Router

Creates a router that is responsible for routing messages to routees within the provided system.

TailChoppingGroup ( Config config ) : System

Initializes a new instance of the TailChoppingGroup class.

TailChoppingGroup ( string routeePaths, System.TimeSpan within, System.TimeSpan interval ) : System

Initializes a new instance of the TailChoppingGroup class.

ToSurrogate ( ActorSystem system ) : ISurrogate

Creates a surrogate representation of the current TailChoppingGroup.

WithDispatcher ( string dispatcher ) : Akka.Routing.Group

Creates a new TailChoppingGroup router with a given dispatcher id. This method is immutable and returns a new instance of the router.

메소드 상세

CreateRouter() 공개 메소드

Creates a router that is responsible for routing messages to routees within the provided system.
public CreateRouter ( ActorSystem system ) : Router
system ActorSystem The actor system that owns this router.
리턴 Router

TailChoppingGroup() 공개 메소드

Initializes a new instance of the TailChoppingGroup class.
public TailChoppingGroup ( Config config ) : System
config Akka.Configuration.Config /// The configuration to use to lookup paths used by the group router. /// /// /// If 'routees.path' is defined in the provided configuration then those paths will be used by the router. /// If 'within' is defined in the provided configuration then that will be used as the timeout. /// If 'tail-chopping-router.interval' is defined in the provided configuration then that will be used as the interval. /// ///
리턴 System

TailChoppingGroup() 공개 메소드

Initializes a new instance of the TailChoppingGroup class.
public TailChoppingGroup ( string routeePaths, System.TimeSpan within, System.TimeSpan interval ) : System
routeePaths string The actor paths used by this router during routee selection.
within System.TimeSpan The amount of time to wait for a response.
interval System.TimeSpan The interval to wait before sending to the next routee.
리턴 System

ToSurrogate() 공개 메소드

Creates a surrogate representation of the current TailChoppingGroup.
public ToSurrogate ( ActorSystem system ) : ISurrogate
system ActorSystem The actor system that owns this router.
리턴 ISurrogate

WithDispatcher() 공개 메소드

Creates a new TailChoppingGroup router with a given dispatcher id. This method is immutable and returns a new instance of the router.
public WithDispatcher ( string dispatcher ) : Akka.Routing.Group
dispatcher string The dispatcher id used to configure the new router.
리턴 Akka.Routing.Group