Package org.apache.solr.common.cloud
Interface DistributedQueue
-
public interface DistributedQueue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
offer(byte[] data)
byte[]
peek()
byte[]
peek(boolean block)
byte[]
peek(long wait)
Collection<Pair<String,byte[]>>
peekElements(int max, long waitMillis, Predicate<String> acceptFilter)
byte[]
poll()
byte[]
remove()
void
remove(Collection<String> paths)
byte[]
take()
-