Back to project page tape.
The source code is released under:
Apache License
If you think the Android project tape listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2011 Square, Inc. package com.squareup.tape; //ww w. j a va2 s .co m /** * A queue of objects. * * @param <T> The type of queue for the elements. */ public interface ObjectQueue<T> { /** Returns the number of entries in the queue. */ int size(); /** Enqueues an entry that can be processed at any time. */ void add(T entry); /** * Returns the head of the queue, or {@code null} if the queue is empty. Does not modify the * queue. */ T peek(); /** Removes the head of the queue. */ void remove(); /** * Sets a listener on this queue. Invokes {@link Listener#onAdd} once for each entry that's * already in the queue. If an error occurs while reading the data, the listener will not receive * further notifications. */ void setListener(Listener<T> listener); /** * Listens for changes to the queue. * * @param <T> The type of elements in the queue. */ public interface Listener<T> { /** Called after an entry is added. */ void onAdd(ObjectQueue<T> queue, T entry); /** Called after an entry is removed. */ void onRemove(ObjectQueue<T> queue); } }