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

quickfix.mina.QueueTracker Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy