The members of Java.Util.Concurrent.IBlockingDeque are listed below.
Add(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
AddFirst(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
AddLast(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Contains(Java.Lang.Object)Returns true if this deque contains the specified element. | ||
Element()Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque). | ||
Iterator()Returns an iterator over the elements in this deque in proper sequence. | ||
Offer(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Offer(Java.Lang.Object, long, TimeUnit)Documentation for this section has not yet been entered. | ||
OfferFirst(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
OfferFirst(Java.Lang.Object, long, TimeUnit)Documentation for this section has not yet been entered. | ||
OfferLast(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
OfferLast(Java.Lang.Object, long, TimeUnit)Documentation for this section has not yet been entered. | ||
Peek()Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty. | ||
Poll()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), or returns null if this deque is empty. | ||
Poll(long, TimeUnit)Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), waiting up to the specified wait time if necessary for an element to become available. | ||
PollFirst(long, TimeUnit)Retrieves and removes the first element of this deque, waiting up to the specified wait time if necessary for an element to become available. | ||
PollLast(long, TimeUnit)Retrieves and removes the last element of this deque, waiting up to the specified wait time if necessary for an element to become available. | ||
Push(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Put(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
PutFirst(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
PutLast(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Remove()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque). | ||
Remove(Java.Lang.Object)Removes the first occurrence of the specified element from this deque. | ||
RemoveFirstOccurrence(Java.Lang.Object)Removes the first occurrence of the specified element from this deque. | ||
RemoveLastOccurrence(Java.Lang.Object)Removes the last occurrence of the specified element from this deque. | ||
Size()Returns the number of elements in this deque. | ||
Take()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), waiting if necessary until an element becomes available. | ||
TakeFirst()Retrieves and removes the first element of this deque, waiting if necessary until an element becomes available. | ||
TakeLast()Retrieves and removes the last element of this deque, waiting if necessary until an element becomes available. |