Public Member Functions | |
Methods for end-users. | |
Name | writeObject (Serializable object) throws IOException |
Write a Serializable object. | |
Serializable | readObject (String uniqueID, String className) throws IOException |
Read a Serializable with uniqueID and className as given. | |
Serializable | readObject (String name) throws IOException |
Read a Serializable using the back-end specific identifier. | |
Methods for streamer implementors | |
void | writeObject (OStream s, String name, Streamable object, boolean writeClassName) throws IOException |
Write an object to the OStream. | |
Streamable | readObject (IStream s, String name, String className) throws IOException |
Read an object from an IStream. | |
Streamable | readObject (IStream s, String name) throws IOException |
Read an object from an IStream. |
Definition at line 5 of file ObjectManager.java.
|
Read an object from an IStream. This method should be used if the object was written with writeClassName = true. First reads the className from the stream. Creates the object from the IStream
Implemented in Sct.AbstractObjectManager. |
|
Read an object from an IStream. This method should be used if the object was written with writeClassName = false. Creates the object from the IStream
Implemented in Sct.AbstractObjectManager. |
|
Read a Serializable using the back-end specific identifier.
Implemented in Sct.File.ObjectManagerFile. |
|
Read a Serializable with uniqueID and className as given.
Implemented in Sct.File.ObjectManagerFile. |
|
Write an object to the OStream. Class object's write method. object may not be null. Causes a WriteAbortedException if it is.
Implemented in Sct.AbstractObjectManager. |
|
Write a Serializable object.
Implemented in Sct.File.ObjectManagerFile. |