Package org.jcsp.net2
Interface NetworkMessageFilter.FilterRx
-
- All Known Implementing Classes:
CodeLoadingChannelFilter.FilterRX
,ObjectNetworkMessageFilter.FilterRX
,RawNetworkMessageFilter.FilterRX
- Enclosing class:
- NetworkMessageFilter
public static interface NetworkMessageFilter.FilterRx
The filter used to decode an incoming message- Author:
- Kevin Chalmers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
filterRX(byte[] bytes)
Decodes an incoming byte array back into an object
-
-
-
Method Detail
-
filterRX
Object filterRX(byte[] bytes) throws IOException
Decodes an incoming byte array back into an object- Parameters:
bytes
- The bytes to be decoded- Returns:
- The recreated Object
- Throws:
IOException
- Thrown if something goes wrong during the decoding
-
-