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.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sends the given element.
  • Method Details

    • sendElement

      void sendElement(E o) throws Exception
      Sends the given element.
      Parameters:
      o - a re-ordered element.
      Throws:
      Exception - if delivery fails.