|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.excalibur.event.impl.LossyMultiCastSink
This is a org.apache.excalibur.event.seda.event.Sink
implementation that multicasts enqueue operations to the
contained and concrete sink objects. Compared to the
regular org.apache.excalibur.event.seda.event.impl.MultiCastSink
this sink works in that it delivers zero, one or more sinks.
It can be configured to fail when less than one sink was
delivered to.
Field Summary |
Fields inherited from interface org.apache.excalibur.event.Sink |
ROLE |
Constructor Summary | |
LossyMultiCastSink(java.util.Collection sinks)
This constructor creates a failure tolerant sink based on the collection of sink arrays. |
|
LossyMultiCastSink(java.util.Collection sinks,
boolean oneSuccess)
This constructor creates a failure tolerant sink based on the collection of sink arrays. |
Method Summary | |
int |
canAccept()
Returns the number of elements it can currently accept. |
void |
enqueue(java.lang.Object element)
Enqueues the given element onto the Sink. |
void |
enqueue(java.lang.Object[] elements)
Given an array of elements, atomically enqueues all of the elements in the array. |
boolean |
isFull()
Returns true if this sink has reached its threshold; false otherwise. |
int |
maxSize()
Returns the length threshold of the sink. |
PreparedEnqueue |
prepareEnqueue(java.lang.Object[] elements)
Support for transactional enqueue. |
int |
size()
Returns the number of elements waiting in this Sink. |
boolean |
tryEnqueue(java.lang.Object element)
Tries to enqueue an event, but instead of throwing exceptions, it returns a boolean value of whether the attempt was successful. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public LossyMultiCastSink(java.util.Collection sinks)
sinks
- A collection of sink arrays for each stage.public LossyMultiCastSink(java.util.Collection sinks, boolean oneSuccess)
sinks
- A collection of sink arrays for each stage.Method Detail |
public int canAccept()
Sink
size()
and
maxSize()
. It will return -1 if the sink is unbounded.
canAccept
in interface Sink
Sink.canAccept()
public boolean isFull()
Sink
isFull
in interface Sink
Sink.isFull()
public int maxSize()
Sink
maxSize
in interface Sink
Sink.maxSize()
public void enqueue(java.lang.Object element) throws SinkException
Sink
enqueue
in interface Sink
element
- The elements to enqueue
SinkException
Sink.enqueue(Object)
public void enqueue(java.lang.Object[] elements) throws SinkException
Sink
enqueue
in interface Sink
elements
- The element array to enqueue
SinkException
Sink.enqueue(Object[])
public boolean tryEnqueue(java.lang.Object element)
Sink
tryEnqueue
in interface Sink
element
- The element to attempt to enqueue
true
if successful, false
if not.Sink.tryEnqueue(Object)
public PreparedEnqueue prepareEnqueue(java.lang.Object[] elements) throws SinkException
Sink
This method allows a client to provisionally enqueue a number
of elements onto the queue, and then later commit the enqueue (with
a commitEnqueue
call), or abort (with an
abortEnqueue
call). This mechanism can be used to
perform "split-phase" enqueues, where a client first enqueues a
set of elements on the queue and then performs some work to "fill in"
those elements before performing a commit. This can also be used
to perform multi-queue transactional enqueue operations, with an
"all-or-nothing" strategy for enqueueing events on multiple Sinks.
This method would generally be used in the following manner:
PreparedEnqueue enqueue = sink.prepareEnqueue(someElements); if (canCommit) { enqueue.commit(); } else { enqueue.abort(); }
Note that this method does not protect against "dangling prepares" -- that is, a prepare without an associated commit or abort operation. This method should be used with care. In particular, be sure that all code paths (such as exceptions) after a prepare include either a commit or an abort.
prepareEnqueue
in interface Sink
elements
- The element array to provisionally enqueue
PreparedEnqueue
that may be used to commit or
abort the provisional enqueue
SinkException
Sink.prepareEnqueue(Object[])
public int size()
Sink
Important: The contract for this method was updated to account for any elements that were prepared for enqueueing. It provides a more predictable and consistent environment, as well as making it easier for EnqueuePredicates to account for those elements.
size
in interface Sink
Sink.size()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |