org.unidal.concurrent.ActorContext Maven / Gradle / Ivy
package org.unidal.concurrent;
import java.util.List;
public interface ActorContext {
public boolean addLast(E event) throws InterruptedException;
public int available();
public int getProcessed();
public boolean isBatchReady();
public E next() throws InterruptedException;
public List nextBatch();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy