C# 클래스 Akka.Routing.RoutingLogic

This class contains logic used by a Router to route messages to one or more actors. These actors are known in the system as a Routee.
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 메소드들

메소드 설명
Select ( object message, Routee routees ) : Routee

Picks a Routee to receive the message. Normally it picks one of the passed routees, but it is up to the implementation to return whatever Routee to use for sending a specific message.

메소드 상세

Select() 공개 추상적인 메소드

Picks a Routee to receive the message. Normally it picks one of the passed routees, but it is up to the implementation to return whatever Routee to use for sending a specific message.
public abstract Select ( object message, Routee routees ) : Routee
message object The message that is being routed
routees Routee A collection of routees to choose from when receiving the .
리턴 Routee