Class ClusteredProperties.PropertyValue<T extends Serializable>
- java.lang.Object
-
- com.oracle.coherence.concurrent.executor.ClusteredProperties.PropertyValue<T>
-
- All Implemented Interfaces:
com.tangosol.io.ExternalizableLite,com.tangosol.io.pof.PortableObject,Serializable
- Enclosing class:
- ClusteredProperties
public static class ClusteredProperties.PropertyValue<T extends Serializable> extends Object implements com.tangosol.io.ExternalizableLite, com.tangosol.io.pof.PortableObject
Property value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyValue()Deserialization constructor.PropertyValue(String sTaskId, T oValue)Construct a PropertyValue instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetTaskId()Return task key.TgetValue()Return property value.inthashCode()voidreadExternal(com.tangosol.io.pof.PofReader in)voidreadExternal(DataInput in)StringtoString()voidwriteExternal(com.tangosol.io.pof.PofWriter out)voidwriteExternal(DataOutput out)
-
-
-
Field Detail
-
m_sTaskId
protected String m_sTaskId
Task ID.
-
m_oValue
protected T extends Serializable m_oValue
Property value.
-
-
Method Detail
-
getTaskId
public String getTaskId()
Return task key.- Returns:
- task key
-
getValue
public T getValue()
Return property value.- Returns:
- property value
-
readExternal
public void readExternal(DataInput in) throws IOException
- Specified by:
readExternalin interfacecom.tangosol.io.ExternalizableLite- Throws:
IOException
-
writeExternal
public void writeExternal(DataOutput out) throws IOException
- Specified by:
writeExternalin interfacecom.tangosol.io.ExternalizableLite- Throws:
IOException
-
readExternal
public void readExternal(com.tangosol.io.pof.PofReader in) throws IOException- Specified by:
readExternalin interfacecom.tangosol.io.pof.PortableObject- Throws:
IOException
-
writeExternal
public void writeExternal(com.tangosol.io.pof.PofWriter out) throws IOException- Specified by:
writeExternalin interfacecom.tangosol.io.pof.PortableObject- Throws:
IOException
-
-