quickfix.mina.QueueTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-core Show documentation
Show all versions of quickfixj-core Show documentation
The core QuickFIX/J engine
The newest version!
package quickfix.mina;
import java.util.Collection;
import java.util.concurrent.TimeUnit;
interface QueueTracker {
void put(E e) throws InterruptedException;
E poll(long timeout, TimeUnit unit) throws InterruptedException;
int drainTo(Collection collection);
}