com.g2forge.alexandria.java.concurrent.ISlot__ Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.concurrent;
/**
* A complete asynchronous message slot, consisting of a future and a promise which are linked. Generally this interface will only be used as the return type
* from a factory, as no consumer of slot should generally need both the future and the promise.
*/
public interface ISlot__ {
public IOpaqueFuture getFuture();
public IOpaquePromise getPromise();
}