Class Publisher.OrderByThread<V>

java.lang.Object
com.tangosol.net.topic.Publisher.OrderBy<V>
com.tangosol.net.topic.Publisher.OrderByThread<V>
Type Parameters:
V - the value type
All Implemented Interfaces:
ExternalizableLite, PortableObject, Publisher.Option<V>, Serializable
Enclosing interface:
Publisher<V>

public static class Publisher.OrderByThread<V> extends Publisher.OrderBy<V>
Publisher.OrderBy option which ensures that a sequence of sent values issued by a single thread will complete in order.
See Also:
  • Field Details

    • INSTANCE

      protected static final Publisher.OrderBy<Object> INSTANCE
      The thread-order singleton. Note, we XOR with the proc random as thread hash codes tend to not be particularly random across JVM instances. For instance the hash code of main is quite consistent from run to run.
  • Constructor Details

    • OrderByThread

      public OrderByThread()
  • Method Details

    • getOrderId

      public int getOrderId(V value)
      Description copied from class: Publisher.OrderBy
      Return unit-of-order id.
      Specified by:
      getOrderId in class Publisher.OrderBy<V>
      Returns:
      the unit-of-order id
    • readExternal

      public void readExternal(DataInput in) throws IOException
      Description copied from interface: ExternalizableLite
      Restore the contents of this object by loading the object's state from the passed DataInput object.
      Parameters:
      in - the DataInput stream to read data from in order to restore the state of this object
      Throws:
      IOException - if an I/O exception occurs
    • writeExternal

      public void writeExternal(DataOutput out) throws IOException
      Description copied from interface: ExternalizableLite
      Save the contents of this object by storing the object's state into the passed DataOutput object.
      Parameters:
      out - the DataOutput stream to write the state of this object to
      Throws:
      IOException - if an I/O exception occurs
    • readExternal

      public void readExternal(PofReader in) throws IOException
      Description copied from interface: PortableObject
      Restore the contents of a user type instance by reading its state using the specified PofReader object.
      Parameters:
      in - the PofReader from which to read the object's state
      Throws:
      IOException - if an I/O error occurs
    • writeExternal

      public void writeExternal(PofWriter out) throws IOException
      Description copied from interface: PortableObject
      Save the contents of a POF user type instance by writing its state using the specified PofWriter object.
      Parameters:
      out - the PofWriter to which to write the object's state
      Throws:
      IOException - if an I/O error occurs
    • toString

      public String toString()
      Overrides:
      toString in class Object