All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fireflysource.common.actor.ActorInternalApi Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.common.actor;

/**
 * Only call these methods in the receiving message thread.
 */
public interface ActorInternalApi {

    /**
     * Pause to receive messages.
     */
    void pause();

    /**
     * Resume to receive messages.
     */
    void resume();

    /**
     * Shutdown the actor.
     */
    void shutdown();

    /**
     * Restart the actor.
     */
    void restart();

    /**
     * Get the actor internal state.
     *
     * @return The actor internal state.
     */
    ActorState getActorState();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy