Table of Contents

Class ArrayBlockingQueue<E>

Namespace
Java.Util.Concurrent
Assembly
MASES.JNet.dll
public class ArrayBlockingQueue<E> : AbstractQueue<E>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IEnumerableExtension, IEnumerable<E>, IEnumerable, IAsyncEnumerable<E>, IIterable<E>, ICollection<E>

Type Parameters

E
Inheritance
JVMBridgeBase
JVMBridgeBase<Iterable<E>>
JVMBridgeBaseEnumerable<Iterable<E>>
JVMBridgeBaseEnumerable<Iterable<E>, E>
ArrayBlockingQueue<E>
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
IEnumerableExtension
Inherited Members
JVMBridgeBaseEnumerable<Iterable<E>, E>.GetEnumerator()
JVMBridgeBaseEnumerable<Iterable<E>>.GetEnumerator()
JVMBridgeBase<Iterable<E>>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Iterable<E>>.IsAssignableFrom<T>()
JVMBridgeBase<Iterable<E>>.Execute<T>(params T[])
JVMBridgeBase<Iterable<E>>.DynBridgeClazz
JVMBridgeBase<Iterable<E>>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

ArrayBlockingQueue()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public ArrayBlockingQueue()

ArrayBlockingQueue(int)

public ArrayBlockingQueue(int arg0)

Parameters

arg0 int

int

ArrayBlockingQueue(int, bool)

public ArrayBlockingQueue(int arg0, bool arg1)

Parameters

arg0 int

int

arg1 bool

bool

ArrayBlockingQueue(int, bool, Collection<E>)

public ArrayBlockingQueue(int arg0, bool arg1, Collection<E> arg2)

Parameters

arg0 int

int

arg1 bool

bool

arg2 Collection<E>

Collection

ArrayBlockingQueue(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public ArrayBlockingQueue(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

DrainTo<Arg0objectSuperE>(Collection<Arg0objectSuperE>)

public int DrainTo<Arg0objectSuperE>(Collection<Arg0objectSuperE> arg0) where Arg0objectSuperE : E

Parameters

arg0 Collection<Arg0objectSuperE>

Collection

Returns

int

int

Type Parameters

Arg0objectSuperE

E

DrainTo<Arg0objectSuperE>(Collection<Arg0objectSuperE>, int)

public int DrainTo<Arg0objectSuperE>(Collection<Arg0objectSuperE> arg0, int arg1) where Arg0objectSuperE : E

Parameters

arg0 Collection<Arg0objectSuperE>

Collection

arg1 int

int

Returns

int

int

Type Parameters

Arg0objectSuperE

E

Offer(E, long, TimeUnit)

public bool Offer(E arg0, long arg1, TimeUnit arg2)

Parameters

arg0 E

E

arg1 long

long

arg2 TimeUnit

TimeUnit

Returns

bool

bool

Exceptions

InterruptedException

Poll(long, TimeUnit)

public E Poll(long arg0, TimeUnit arg1)

Parameters

arg0 long

long

arg1 TimeUnit

TimeUnit

Returns

E

E

Exceptions

InterruptedException

Put(E)

public void Put(E arg0)

Parameters

arg0 E

E

Exceptions

InterruptedException

RemainingCapacity()

public int RemainingCapacity()

Returns

int

int

Take()

public E Take()

Returns

E

E

Exceptions

InterruptedException

Operators

implicit operator Serializable(ArrayBlockingQueue<E>)

public static implicit operator Serializable(ArrayBlockingQueue<E> t)

Parameters

t ArrayBlockingQueue<E>

Returns

Serializable

implicit operator ArrayBlockingQueue(ArrayBlockingQueue<E>)

public static implicit operator ArrayBlockingQueue(ArrayBlockingQueue<E> t)

Parameters

t ArrayBlockingQueue<E>

Returns

ArrayBlockingQueue

implicit operator BlockingQueue<E>(ArrayBlockingQueue<E>)

public static implicit operator BlockingQueue<E>(ArrayBlockingQueue<E> t)

Parameters

t ArrayBlockingQueue<E>

Returns

BlockingQueue<E>