Table of Contents

Interface ITransferQueue<E>

Namespace
Java.Util.Concurrent
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface ITransferQueue<E> : IBlockingQueue<E>, IQueue<E>, ICollection<E>

Type Parameters

E
Inherited Members

Properties

WaitingConsumerCount

int WaitingConsumerCount { get; }

Property Value

int

Methods

HasWaitingConsumer()

bool HasWaitingConsumer()

Returns

bool

bool

Transfer(E)

void Transfer(E arg0)

Parameters

arg0 E

E

Exceptions

InterruptedException

TryTransfer(E)

bool TryTransfer(E arg0)

Parameters

arg0 E

E

Returns

bool

bool

TryTransfer(E, long, TimeUnit)

bool TryTransfer(E arg0, long arg1, TimeUnit arg2)

Parameters

arg0 E

E

arg1 long

long

arg2 TimeUnit

TimeUnit

Returns

bool

bool

Exceptions

InterruptedException