Created
November 23, 2010 09:01
-
-
Save remeniuk/711486 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Registers reference to the actor (RemoteActorRef) at remote registry, | |
* so that the reference can be picked from the registry just like the other | |
* local actors | |
*/ | |
case class RegisterActor(actor: ActorLink) | |
/** | |
* Unregisters reference to the actor from remote registry | |
*/ | |
case class UnregisterActor(actor: ActorLink) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment