java.lang.Object |
IObjectConstructor.construct(java.lang.Object[] args) |
Create an object.
|
java.lang.Object[] |
IObjectDeconstructor.deconstruct(java.lang.Object obj) |
Deconstructs the arugment of an object.
|
protected java.lang.Object |
Unpickler.dispatch(short key) |
Process a single pickle stream opcode.
|
void |
Pickler.dump(java.lang.Object o,
java.io.OutputStream stream) |
Pickle a given object graph, writing the result to the output stream.
|
byte[] |
Pickler.dumps(java.lang.Object o) |
Pickle a given object graph, returning the result as a byte array.
|
java.lang.Object |
Unpickler.load(java.io.InputStream stream) |
Read a pickled object representation from the given input stream.
|
java.lang.Object |
Unpickler.loads(byte[] pickledata) |
Read a pickled object representation from the given pickle data bytes.
|
protected java.lang.Object |
Unpickler.next_buffer() |
Buffer support for protocol 5 out of band data
If you want to unpickle such pickles, you'll have to subclass the unpickler
and override this method to return the buffer data you want.
|
void |
IObjectPickler.pickle(java.lang.Object o,
java.io.OutputStream out,
Pickler currentPickler) |
Pickle an object.
|
void |
Pickler.save(java.lang.Object o) |
Pickle a single object and write its pickle representation to the output stream.
|