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

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

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

/**
 * The actor mailbox.
 */
public interface Mailbox {

    S pollSystemMessage();

    boolean offerSystemMessage(S systemMessage);

    boolean hasSystemMessage();

    U pollUserMessage();

    boolean offerUserMessage(U userMessage);

    boolean hasUserMessage();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy