com.ibm.streamsx.topology.spi.runtime
Interface TupleSerializer
-
- All Superinterfaces:
- java.io.Serializable
public interface TupleSerializer extends java.io.Serializable
-
-
Field Summary
Fields Modifier and Type Field and Description static TupleSerializer
JAVA_SERIALIZER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description java.lang.Object
deserialize(java.io.InputStream input)
void
serialize(java.lang.Object tuple, java.io.OutputStream output)
-
-
-
Field Detail
-
JAVA_SERIALIZER
static final TupleSerializer JAVA_SERIALIZER
-
-
Method Detail
-
serialize
void serialize(java.lang.Object tuple, java.io.OutputStream output) throws java.io.IOException
- Throws:
java.io.IOException
-
deserialize
java.lang.Object deserialize(java.io.InputStream input) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
-