Package co.paralleluniverse.actors.RemoteActorRef

Examples of co.paralleluniverse.actors.RemoteActorRef.RemoteActorUnregisterListenerAdminMessage


    public void addLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorRegisterListenerAdminMessage((ActorRefImpl.ActorLifecycleListener) listener));
    }

    public void removeLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage(listener));
    }
View Full Code Here


    public void removeLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage(listener));
    }

    public void removeLifecycleListeners(RemoteActorRef actor, ActorRef observer) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage((ActorRefImpl)observer));
    }
View Full Code Here

    public void addLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorRegisterListenerAdminMessage((ActorRefImpl.ActorLifecycleListener) listener));
    }

    public void removeLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage(listener));
    }
View Full Code Here

    public void removeLifecycleListener(RemoteActorRef actor, LifecycleListener listener) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage(listener));
    }

    public void removeLifecycleListeners(RemoteActorRef actor, ActorRef observer) {
        actor.internalSendNonSuspendable(new RemoteActorUnregisterListenerAdminMessage((ActorRefImpl)observer));
    }
View Full Code Here

TOP

Related Classes of co.paralleluniverse.actors.RemoteActorRef.RemoteActorUnregisterListenerAdminMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.