public class RemoteEventTokenHandler extends java.lang.Object implements TokenHandler<RemoteEventToken>
Red (jkillian) |
Red (jkillian) |
Constructor and Description |
---|
RemoteEventTokenHandler() |
Modifier and Type | Method and Description |
---|---|
void |
convertToBytes(RemoteEventToken token,
java.io.DataOutputStream outputStream)
Write the ServerEventToken to a byte array.
|
RemoteEventToken |
convertToToken(java.io.DataInputStream inputStream,
java.lang.Class<? extends RemoteEventToken> tokenType)
Read an ServerEventToken from the input stream.
|
public void convertToBytes(RemoteEventToken token, java.io.DataOutputStream outputStream) throws java.io.IOException
convertToBytes
in interface TokenHandler<RemoteEventToken>
token
- Token to be converted to bytes.outputStream
- The stream to write to.java.io.IOException
- If the stream cannot be written.TokenHandler.convertToBytes(ptolemy.data.Token, java.io.DataOutputStream)
public RemoteEventToken convertToToken(java.io.DataInputStream inputStream, java.lang.Class<? extends RemoteEventToken> tokenType) throws java.io.IOException
convertToToken
in interface TokenHandler<RemoteEventToken>
inputStream
- The stream to read from.tokenType
- The type of token to be parsed.java.io.IOException
- If the stream cannot be read.TokenHandler.convertToToken(java.io.DataInputStream, Class)