Package org.kie.api.marshalling
Interface ObjectMarshallingStrategy.Context
-
- Enclosing interface:
- ObjectMarshallingStrategy
public static interface ObjectMarshallingStrategy.Context
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
read(ObjectInputStream ois)
Loads the context from the given object input streamvoid
write(ObjectOutputStream oos)
Writes the context to the given object output stream
-
-
-
Method Detail
-
read
void read(ObjectInputStream ois) throws IOException, ClassNotFoundException
Loads the context from the given object input stream- Throws:
IOException
ClassNotFoundException
-
write
void write(ObjectOutputStream oos) throws IOException
Writes the context to the given object output stream- Throws:
IOException
-
-