Package com.tangosol.net.topic
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
public static class Publisher.OrderByThread<V> extends Publisher.OrderBy<V>
Publisher.OrderBy
option which ensures that a sequence ofsent values
issued by a single thread will complete in order.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static Publisher.OrderBy<Object>
INSTANCE
The thread-order singleton.
-
Constructor Summary
Constructors Constructor Description OrderByThread()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getOrderId(V value)
Return unit-of-order id.void
readExternal(PofReader in)
Restore the contents of a user type instance by reading its state using the specified PofReader object.void
readExternal(DataInput in)
Restore the contents of this object by loading the object's state from the passed DataInput object.String
toString()
void
writeExternal(PofWriter out)
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.void
writeExternal(DataOutput out)
Save the contents of this object by storing the object's state into the passed DataOutput object.-
Methods inherited from class com.tangosol.net.topic.Publisher.OrderBy
id, none, roundRobin, thread, value, value
-
-
-
-
Field Detail
-
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.
-
-
Method Detail
-
getOrderId
public int getOrderId(V value)
Description copied from class:Publisher.OrderBy
Return unit-of-order id.- Specified by:
getOrderId
in classPublisher.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 occursNotActiveException
- if the object is not in its initial state, and therefore cannot be deserialized into
-
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
-
-