Package org.jboss.marshalling
Class ObjectOutputStreamMarshaller
- java.lang.Object
-
- org.jboss.marshalling.ObjectOutputStreamMarshaller
-
- All Implemented Interfaces:
java.io.Closeable,java.io.DataOutput,java.io.Flushable,java.io.ObjectOutput,java.lang.AutoCloseable,ByteOutput,Marshaller
public class ObjectOutputStreamMarshaller extends java.lang.Object implements Marshaller
A Marshaller which simply wraps an object stream. Useful for retrofitting and testing applications.
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.ObjectOutputStreamoos
-
Constructor Summary
Constructors Constructor Description ObjectOutputStreamMarshaller(java.io.ObjectOutputStream oos)Construct a new instance which wraps the given stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearClassCache()Discard the class cache.voidclearInstanceCache()Discard the instance cache.voidclose()voidfinish()Finish marshalling to a stream.voidflush()voidstart(ByteOutput newOutput)Begin marshalling to a stream.voidwrite(byte[] buf)Write all the bytes from the given array to the stream.voidwrite(byte[] buf, int off, int len)Write some of the bytes from the given array to the stream.voidwrite(int val)Writes to the output stream the eight low-order bits of the argumentb.voidwriteBoolean(boolean val)voidwriteByte(int val)voidwriteBytes(java.lang.String str)voidwriteChar(int val)voidwriteChars(java.lang.String str)voidwriteDouble(double val)voidwriteFloat(float val)voidwriteInt(int val)voidwriteLong(long val)voidwriteObject(java.lang.Object obj)voidwriteObjectUnshared(java.lang.Object obj)Write an object to the underlying storage or stream as a new instance.voidwriteShort(int val)voidwriteUTF(java.lang.String str)
-
-
-
Method Detail
-
writeObject
public void writeObject(java.lang.Object obj) throws java.io.IOException- Specified by:
writeObjectin interfacejava.io.ObjectOutput- Throws:
java.io.IOException
-
write
public void write(int val) throws java.io.IOExceptionWrites to the output stream the eight low-order bits of the argumentb. The 24 high-order bits ofbare ignored.- Specified by:
writein interfaceByteOutput- Specified by:
writein interfacejava.io.DataOutput- Specified by:
writein interfacejava.io.ObjectOutput- Parameters:
val- the byte to write- Throws:
java.io.IOException- if an error occurs
-
write
public void write(byte[] buf) throws java.io.IOExceptionWrite all the bytes from the given array to the stream.- Specified by:
writein interfaceByteOutput- Specified by:
writein interfacejava.io.DataOutput- Specified by:
writein interfacejava.io.ObjectOutput- Parameters:
buf- the byte array- Throws:
java.io.IOException- if an error occurs
-
write
public void write(byte[] buf, int off, int len) throws java.io.IOExceptionWrite some of the bytes from the given array to the stream.- Specified by:
writein interfaceByteOutput- Specified by:
writein interfacejava.io.DataOutput- Specified by:
writein interfacejava.io.ObjectOutput- Parameters:
buf- the byte arrayoff- the index to start writing fromlen- the number of bytes to write- Throws:
java.io.IOException- if an error occurs
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Specified by:
flushin interfacejava.io.ObjectOutput- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein interfacejava.io.ObjectOutput- Throws:
java.io.IOException
-
writeBoolean
public void writeBoolean(boolean val) throws java.io.IOException- Specified by:
writeBooleanin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeByte
public void writeByte(int val) throws java.io.IOException- Specified by:
writeBytein interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeShort
public void writeShort(int val) throws java.io.IOException- Specified by:
writeShortin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeChar
public void writeChar(int val) throws java.io.IOException- Specified by:
writeCharin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeInt
public void writeInt(int val) throws java.io.IOException- Specified by:
writeIntin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeLong
public void writeLong(long val) throws java.io.IOException- Specified by:
writeLongin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeFloat
public void writeFloat(float val) throws java.io.IOException- Specified by:
writeFloatin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeDouble
public void writeDouble(double val) throws java.io.IOException- Specified by:
writeDoublein interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeBytes
public void writeBytes(java.lang.String str) throws java.io.IOException- Specified by:
writeBytesin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeChars
public void writeChars(java.lang.String str) throws java.io.IOException- Specified by:
writeCharsin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeUTF
public void writeUTF(java.lang.String str) throws java.io.IOException- Specified by:
writeUTFin interfacejava.io.DataOutput- Throws:
java.io.IOException
-
writeObjectUnshared
public void writeObjectUnshared(java.lang.Object obj) throws java.io.IOExceptionWrite an object to the underlying storage or stream as a new instance. The class that implements this interface defines how the object is written.- Specified by:
writeObjectUnsharedin interfaceMarshaller- Parameters:
obj- the object to be written- Throws:
java.io.IOException- if an error occurs
-
start
public void start(ByteOutput newOutput) throws java.io.IOException
Begin marshalling to a stream.- Specified by:
startin interfaceMarshaller- Parameters:
newOutput- the new stream- Throws:
java.io.IOException- if an error occurs during setup, such as an error writing the header
-
clearInstanceCache
public void clearInstanceCache() throws java.io.IOExceptionDiscard the instance cache. May also discard the class cache in implementations that do not support separated class and instance caches.- Specified by:
clearInstanceCachein interfaceMarshaller- Throws:
java.io.IOException- if an error occurs
-
clearClassCache
public void clearClassCache() throws java.io.IOExceptionDiscard the class cache. Implicitly also discards the instance cache.- Specified by:
clearClassCachein interfaceMarshaller- Throws:
java.io.IOException- if an error occurs
-
finish
public void finish() throws java.io.IOExceptionFinish marshalling to a stream. Any transient class or instance cache is discarded. The stream is released. No further marshalling may be done until theMarshaller.start(ByteOutput)method is again invoked.- Specified by:
finishin interfaceMarshaller- Throws:
java.io.IOException- if an error occurs
-
-