public class InvocationOutputStream extends OutputStream implements InvocationOutput
InvocationOutput.InvocationInputStream| Constructor and Description |
|---|
InvocationOutputStream(InvocationChannel channel,
DrainableObjectOutputStream out) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
void |
reset()
Resets the stream for reuse.
|
String |
toString() |
void |
write(byte[] b) |
void |
write(byte[] b,
int offset,
int length) |
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObject(Object obj)
Writes a sharable Serializable or Remote object.
|
void |
writeShort(int v) |
void |
writeThrowable(Throwable t)
Writes the given Throwable with additional remote information.
|
void |
writeUnshared(Object obj)
Writes an unshared Serializable or Remote object.
|
void |
writeUnsharedString(String str)
Writes the length and contents of the String in a packed format similar
to UTF-8.
|
void |
writeUTF(String s) |
public InvocationOutputStream(InvocationChannel channel, DrainableObjectOutputStream out)
out - stream to wrappublic void write(int b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void write(byte[] b,
int offset,
int length)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void writeBoolean(boolean v)
throws IOException
writeBoolean in interface DataOutputIOExceptionpublic void writeByte(int v)
throws IOException
writeByte in interface DataOutputIOExceptionpublic void writeShort(int v)
throws IOException
writeShort in interface DataOutputIOExceptionpublic void writeChar(int v)
throws IOException
writeChar in interface DataOutputIOExceptionpublic void writeInt(int v)
throws IOException
writeInt in interface DataOutputIOExceptionpublic void writeLong(long v)
throws IOException
writeLong in interface DataOutputIOExceptionpublic void writeFloat(float v)
throws IOException
writeFloat in interface DataOutputIOExceptionpublic void writeDouble(double v)
throws IOException
writeDouble in interface DataOutputIOExceptionpublic void writeBytes(String s) throws IOException
writeBytes in interface DataOutputIOExceptionpublic void writeChars(String s) throws IOException
writeChars in interface DataOutputIOExceptionpublic void writeUTF(String s) throws IOException
writeUTF in interface DataOutputIOExceptionpublic void writeUnsharedString(String str) throws IOException
InvocationOutputwriteUnsharedString in interface InvocationOutputstr - string of any length or nullIOExceptionpublic void writeUnshared(Object obj) throws IOException
InvocationOutputwriteUnshared in interface InvocationOutputIOExceptionpublic void writeObject(Object obj) throws IOException
InvocationOutputwriteObject in interface ObjectOutputwriteObject in interface InvocationOutputIOExceptionpublic void writeThrowable(Throwable t) throws IOException
InvocationOutputwriteThrowable in interface InvocationOutputIOExceptionpublic void reset()
throws IOException
InvocationOutputreset in interface InvocationOutputIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in interface ObjectOutputflush in class OutputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface ObjectOutputclose in interface AutoCloseableclose in class OutputStreamIOExceptionCopyright © 2006–2015 Cojen. All rights reserved.