Package org.km3net.clb.remote.msg
Interface MessageDecoder<T>
-
- Type Parameters:
T
- The type of object in which decoding will result.
public interface MessageDecoder<T>
Interface specifying the message decoder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
decodeMessage(MessageReader mr)
Decoding action.
-
-
-
Method Detail
-
decodeMessage
T decodeMessage(MessageReader mr)
Decoding action.- Parameters:
mr
- MessageReader containing message contents- Returns:
- Decoded object
-
-