Package | Description |
---|---|
org.kie.api.marshalling |
Marshalling classes are used to marshall and unmarshal StatefulKieSessions
See KieMarshallers for more detailed information.
|
Modifier and Type | Method and Description |
---|---|
ObjectMarshallingStrategy.Context |
ObjectMarshallingStrategy.createContext()
Creates a new marshalling context
|
Modifier and Type | Method and Description |
---|---|
byte[] |
ObjectMarshallingStrategy.marshal(ObjectMarshallingStrategy.Context context,
ObjectOutputStream os,
Object object)
This method is analogous to the write() method, but instead
of writing the object into an output stream, it returns
the marshalled object as a byte[].
|
Object |
ObjectMarshallingStrategy.unmarshal(ObjectMarshallingStrategy.Context context,
ObjectInputStream is,
byte[] object,
ClassLoader classloader)
This method is analogous to the read method, but instead of reading it from an
input stream, it reads it from a byte[]
|
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.