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

org.unidal.concurrent.ActorContext Maven / Gradle / Ivy

The newest version!
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