C# 클래스 Akka.Remote.RemoteActorRef

Class RemoteActorRef.
상속: Akka.Actor.InternalActorRef, RemoteRef
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

Private Properties

프로퍼티 타입 설명
HandleException void
RemoteActorRef System

공개 메소드들

메소드 설명
GetChild ( IEnumerable name ) : IActorRef

Gets the child.

IsWatchIntercepted ( IActorRef watchee, IActorRef watcher ) : bool

Determine if a Watch/Unwatch message must be handled by the RemoteWatcher actor, or sent to this RemoteActorRef.

Restart ( Exception cause ) : void

Restarts the specified cause.

Resume ( Exception causedByFailure = null ) : void

Resumes the specified caused by failure.

SendSystemMessage ( ISystemMessage message ) : void

Sends the system message.

Start ( ) : void

Starts this instance.

Stop ( ) : void

Stops this instance.

Suspend ( ) : void

Suspends this instance.

보호된 메소드들

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

Tells the internal.

비공개 메소드들

메소드 설명
HandleException ( Exception ex ) : void
RemoteActorRef ( Akka.Remote.RemoteTransport remote, Akka.Actor.Address localAddressToUse, ActorPath path, IInternalActorRef parent, Props props, Akka.Actor.Deploy deploy ) : System

Initializes a new instance of the RemoteActorRef class.

메소드 상세

GetChild() 공개 메소드

Gets the child.
public GetChild ( IEnumerable name ) : IActorRef
name IEnumerable The name.
리턴 IActorRef

IsWatchIntercepted() 공개 메소드

Determine if a Watch/Unwatch message must be handled by the RemoteWatcher actor, or sent to this RemoteActorRef.
public IsWatchIntercepted ( IActorRef watchee, IActorRef watcher ) : bool
watchee IActorRef The actor being watched.
watcher IActorRef The actor watching.
리턴 bool

Restart() 공개 메소드

Restarts the specified cause.
public Restart ( Exception cause ) : void
cause System.Exception The cause.
리턴 void

Resume() 공개 메소드

Resumes the specified caused by failure.
public Resume ( Exception causedByFailure = null ) : void
causedByFailure System.Exception The caused by failure.
리턴 void

SendSystemMessage() 공개 메소드

Sends the system message.
public SendSystemMessage ( ISystemMessage message ) : void
message ISystemMessage The message.
리턴 void

Start() 공개 메소드

Starts this instance.
public Start ( ) : void
리턴 void

Stop() 공개 메소드

Stops this instance.
public Stop ( ) : void
리턴 void

Suspend() 공개 메소드

Suspends this instance.
public Suspend ( ) : void
리턴 void

TellInternal() 보호된 메소드

Tells the internal.
protected TellInternal ( object message, IActorRef sender ) : void
message object The message.
sender IActorRef The sender.
리턴 void