public class AtomicMarshalOutputStream extends MarshalOutputStream
ObjectOutputStream.PutFieldbaseWireHandle, PROTOCOL_VERSION_1, PROTOCOL_VERSION_2, SC_BLOCK_DATA, SC_ENUM, SC_EXTERNALIZABLE, SC_SERIALIZABLE, SC_WRITE_METHOD, STREAM_MAGIC, STREAM_VERSION, SUBCLASS_IMPLEMENTATION_PERMISSION, SUBSTITUTION_PERMISSION, TC_ARRAY, TC_BASE, TC_BLOCKDATA, TC_BLOCKDATALONG, TC_CLASS, TC_CLASSDESC, TC_ENDBLOCKDATA, TC_ENUM, TC_EXCEPTION, TC_LONGSTRING, TC_MAX, TC_NULL, TC_OBJECT, TC_PROXYCLASSDESC, TC_REFERENCE, TC_RESET, TC_STRING| Constructor and Description |
|---|
AtomicMarshalOutputStream(OutputStream out,
ClassLoader defaultLoader,
Collection context,
boolean writeCodebaseAnnotations) |
AtomicMarshalOutputStream(OutputStream out,
Collection context) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
defaultWriteObject() |
protected void |
drain() |
protected boolean |
enableReplaceObject(boolean enable) |
void |
flush() |
ObjectOutputStream.PutField |
putFields() |
protected Object |
replaceObject(Object obj)
This implementation replaces the following types in the stream:
|
void |
reset()
Reset will disregard the state of any objects already written to the
stream.
|
void |
useProtocolVersion(int version) |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
protected void |
writeAnnotation(String annotation)
Writes a class annotation string value (possibly
null) to be read by a corresponding
MarshalInputStream implementation. |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
protected void |
writeClassDescriptor(ObjectStreamClass desc) |
void |
writeDouble(double v) |
void |
writeFields() |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObjectOverride(Object obj) |
void |
writeShort(int v) |
void |
writeUnshared(Object obj) |
void |
writeUTF(String s) |
annotateClass, annotateProxyClass, getObjectStreamContextwriteObject, writeStreamHeaderpublic AtomicMarshalOutputStream(OutputStream out, Collection context) throws IOException
IOExceptionpublic AtomicMarshalOutputStream(OutputStream out, ClassLoader defaultLoader, Collection context, boolean writeCodebaseAnnotations) throws IOException
out - defaultLoader - context - writeCodebaseAnnotations - if false stream format is generally compatible with
ObjectOutputStream and annotations aren't written to stream, if true,
it's generally compatible with MarshalOutputStream and annotations are
written to stream.IOExceptionpublic final void writeObjectOverride(Object obj) throws IOException
writeObjectOverride in class ObjectOutputStreamIOExceptionprotected void writeAnnotation(String annotation) throws IOException
MarshalOutputStreamnull) to be read by a corresponding
MarshalInputStream implementation.
MarshalOutputStream implements this method to
just write the annotation value to this stream using writeObject.
A subclass can override this method to write the annotation to a different location.
writeAnnotation in class MarshalOutputStreamannotation - the class annotation string value (possibly
null) to writeIOException - if I/O exception occurs writing the
annotationpublic void writeUnshared(Object obj) throws IOException
writeUnshared in class ObjectOutputStreamIOExceptionpublic void write(int b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class ObjectOutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class ObjectOutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class ObjectOutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in interface ObjectOutputflush in class ObjectOutputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface ObjectOutputclose in interface AutoCloseableclose in class ObjectOutputStreamIOExceptionpublic void writeBoolean(boolean v)
throws IOException
writeBoolean in interface DataOutputwriteBoolean in class ObjectOutputStreamIOExceptionpublic void writeByte(int v)
throws IOException
writeByte in interface DataOutputwriteByte in class ObjectOutputStreamIOExceptionpublic void writeShort(int v)
throws IOException
writeShort in interface DataOutputwriteShort in class ObjectOutputStreamIOExceptionpublic void writeChar(int v)
throws IOException
writeChar in interface DataOutputwriteChar in class ObjectOutputStreamIOExceptionpublic void writeInt(int v)
throws IOException
writeInt in interface DataOutputwriteInt in class ObjectOutputStreamIOExceptionpublic void writeLong(long v)
throws IOException
writeLong in interface DataOutputwriteLong in class ObjectOutputStreamIOExceptionpublic void writeFloat(float v)
throws IOException
writeFloat in interface DataOutputwriteFloat in class ObjectOutputStreamIOExceptionpublic void writeDouble(double v)
throws IOException
writeDouble in interface DataOutputwriteDouble in class ObjectOutputStreamIOExceptionpublic void writeBytes(String s) throws IOException
writeBytes in interface DataOutputwriteBytes in class ObjectOutputStreamIOExceptionpublic void writeChars(String s) throws IOException
writeChars in interface DataOutputwriteChars in class ObjectOutputStreamIOExceptionpublic void writeUTF(String s) throws IOException
writeUTF in interface DataOutputwriteUTF in class ObjectOutputStreamIOExceptionprotected void drain()
throws IOException
drain in class ObjectOutputStreamIOExceptionprotected boolean enableReplaceObject(boolean enable)
throws SecurityException
enableReplaceObject in class ObjectOutputStreamSecurityExceptionprotected Object replaceObject(Object obj) throws IOException
replaceObject in class ObjectOutputStreamobj - IOExceptionprotected void writeClassDescriptor(ObjectStreamClass desc) throws IOException
writeClassDescriptor in class ObjectOutputStreamIOExceptionpublic void useProtocolVersion(int version)
throws IOException
useProtocolVersion in class ObjectOutputStreamIOExceptionpublic void reset()
throws IOException
reset in class ObjectOutputStreamIOException - if reset() is invoked while serializing an object.public void defaultWriteObject()
throws IOException
defaultWriteObject in class ObjectOutputStreamIOExceptionpublic ObjectOutputStream.PutField putFields() throws IOException
putFields in class ObjectOutputStreamIOExceptionpublic void writeFields()
throws IOException
writeFields in class ObjectOutputStreamIOExceptionCopyright © 2016–2018 The Apache Software Foundation. All rights reserved.