Java.Util.Concurrent.IBlockingQueue Members

The members of Java.Util.Concurrent.IBlockingQueue are listed below.

Public Methods

Add(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Contains(Java.Lang.Object) : bool
Returns true if this queue contains the specified element.
DrainTo(ICollection) : int
Documentation for this section has not yet been entered.
DrainTo(ICollection, int) : int
Documentation for this section has not yet been entered.
Offer(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Offer(Java.Lang.Object, long, TimeUnit) : bool
Documentation for this section has not yet been entered.
Poll(long, TimeUnit) : Java.Lang.Object
Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.
Put(Java.Lang.Object)
Documentation for this section has not yet been entered.
RemainingCapacity() : int
Returns the number of additional elements that this queue can ideally (in the absence of memory or resource constraints) accept without blocking, or Integer.MAX_VALUE if there is no intrinsic limit.
Remove(Java.Lang.Object) : bool
Removes a single instance of the specified element from this queue, if it is present.
Take() : Java.Lang.Object
Retrieves and removes the head of this queue, waiting if necessary until an element becomes available.