org.apache.camel.processor.resequencer
Interface SequenceSender<E>

All Known Implementing Classes:
StreamResequencer

public interface SequenceSender<E>

An interface used by the ResequencerEngine.deliver() and ResequencerEngine.deliverNext() methods to send out re-ordered elements.

Version:

Method Summary
 void sendElement(E o)
          Sends the given element.
 

Method Detail

sendElement

void sendElement(E o)
                 throws Exception
Sends the given element.

Parameters:
o - a re-ordered element.
Throws:
Exception - if delivery fails.


Apache CAMEL