Interface MarshalledValue<T,C>
- Type Parameters:
T- value typeC- marshalling context type
- All Known Implementing Classes:
ByteBufferMarshalledKey,ByteBufferMarshalledValue
public interface MarshalledValue<T,C>
Offers semantics similar to a
MarshalledObject.get(), but supports an independent marshalling context.- Author:
- Paul Ferraro
-
Method Summary
-
Method Details
-
get
Returns the value, unmarshalling using the specified context if necessary.- Parameters:
context- a marshalling context- Returns:
- the value wrapped by this marshalled value.
- Throws:
IOException- if the value could not be unmarshalled.
-