|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.dbunit.util.concurrent.SynchronousChannel
A rendezvous channel, similar to those used in CSP and Ada. Each put must wait for a take, and vice versa. Synchronous channels are well suited for handoff designs, in which an object running in one thread must synch up with an object running in another thread in order to hand it some information, event, or task.
If you only need threads to synch up without exchanging information, consider using a Barrier. If you need bidirectional exchanges, consider using a Rendezvous.
[ Introduction to this package. ]
CyclicBarrier
,
Rendezvous
Nested Class Summary | |
protected static class |
SynchronousChannel.Queue
Simple FIFO queue class to hold waiting puts/takes. |
Field Summary | |
protected static java.lang.Object |
CANCELLED
Special marker used in queue nodes to indicate that the thread waiting for a change in the node has timed out or been interrupted. |
protected SynchronousChannel.Queue |
waitingPuts
|
protected SynchronousChannel.Queue |
waitingTakes
|
Constructor Summary | |
SynchronousChannel()
|
Method Summary | |
int |
capacity()
Return the maximum number of elements that can be held. |
boolean |
offer(java.lang.Object x,
long msecs)
Place item in channel only if it can be accepted within msecs milliseconds. |
java.lang.Object |
peek()
Return, but do not remove object at head of Channel, or null if it is empty. |
java.lang.Object |
poll(long msecs)
Return and remove an item from channel only if one is available within msecs milliseconds. |
void |
put(java.lang.Object x)
Place item in the channel, possibly waiting indefinitely until it can be accepted. |
java.lang.Object |
take()
Return and remove an item from channel, possibly waiting indefinitely until such an item exists. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static final java.lang.Object CANCELLED
protected final SynchronousChannel.Queue waitingPuts
protected final SynchronousChannel.Queue waitingTakes
Constructor Detail |
public SynchronousChannel()
Method Detail |
public int capacity()
BoundedChannel
capacity
in interface BoundedChannel
public java.lang.Object peek()
Channel
peek
in interface Channel
public void put(java.lang.Object x) throws java.lang.InterruptedException
Channel
put
in interface Channel
x
- the element to be inserted. Should be non-null.
java.lang.InterruptedException
- if the current thread has
been interrupted at a point at which interruption
is detected, in which case the element is guaranteed not
to be inserted. Otherwise, on normal return, the element is guaranteed
to have been inserted.public java.lang.Object take() throws java.lang.InterruptedException
Channel
take
in interface Channel
java.lang.InterruptedException
- if the current thread has
been interrupted at a point at which interruption
is detected, in which case state of the channel is unchanged.public boolean offer(java.lang.Object x, long msecs) throws java.lang.InterruptedException
Channel
offer
in interface Channel
x
- the element to be inserted. Should be non-null.msecs
- the number of milliseconds to wait. If less than
or equal to zero, the method does not perform any timed waits,
but might still require
access to a synchronization lock, which can impose unbounded
delay if there is a lot of contention for the channel.
java.lang.InterruptedException
- if the current thread has
been interrupted at a point at which interruption
is detected, in which case the element is guaranteed not
to be inserted (i.e., is equivalent to a false return).public java.lang.Object poll(long msecs) throws java.lang.InterruptedException
Channel
poll
in interface Channel
msecs
- the number of milliseconds to wait. If less than
or equal to zero, the operation does not perform any timed waits,
but might still require
access to a synchronization lock, which can impose unbounded
delay if there is a lot of contention for the channel.
java.lang.InterruptedException
- if the current thread has
been interrupted at a point at which interruption
is detected, in which case state of the channel is unchanged
(i.e., equivalent to a null return).
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |