C# 클래스 Akka.Routing.TailChoppingRoutee

A single point routee that routes to randomly chosen routees at a given interval. Accepts the first response.
상속: Routee
파일 보기 프로젝트 열기: rogeralsing/akka.net

공개 메소드들

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

Sends a message to the collection of routees.

TailChoppingRoutee ( Routee routees, System.TimeSpan within, System.TimeSpan interval, IScheduler scheduler ) : System

Initializes a new instance of the TailChoppingRoutee class.

메소드 상세

Send() 공개 메소드

Sends a message to the collection of routees.
public Send ( object message, IActorRef sender ) : void
message object The message that is being sent.
sender IActorRef The actor sending the message.
리턴 void

TailChoppingRoutee() 공개 메소드

Initializes a new instance of the TailChoppingRoutee class.
public TailChoppingRoutee ( Routee routees, System.TimeSpan within, System.TimeSpan interval, IScheduler scheduler ) : System
routees Routee The list of routees that the router uses to send messages.
within System.TimeSpan The time within which at least one response is expected.
interval System.TimeSpan The duration after which the next routee will be picked.
scheduler IScheduler The used to force deadlines.
리턴 System