|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.OutputStream java.io.FilterOutputStream java.io.DataOutputStream org.jgroups.util.ExposedDataOutputStream
public class ExposedDataOutputStream
Field Summary |
---|
Fields inherited from class java.io.DataOutputStream |
---|
written |
Fields inherited from class java.io.FilterOutputStream |
---|
out |
Constructor Summary | |
---|---|
ExposedDataOutputStream(java.io.OutputStream out)
Creates a new data output stream to write data to the specified underlying output stream. |
Method Summary | |
---|---|
java.io.OutputStream |
getOutputStream()
|
void |
reset()
|
void |
write(byte[] b,
int off,
int len)
Writes len bytes from the specified byte array
starting at offset off to the underlying output stream. |
void |
write(int b)
|
Methods inherited from class java.io.DataOutputStream |
---|
flush, size, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF |
Methods inherited from class java.io.FilterOutputStream |
---|
close, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.io.DataOutput |
---|
write |
Constructor Detail |
---|
public ExposedDataOutputStream(java.io.OutputStream out)
written
is
set to zero.
out
- the underlying output stream, to be saved for later
use.FilterOutputStream.out
Method Detail |
---|
public void reset()
public java.io.OutputStream getOutputStream()
public void write(int b) throws java.io.IOException
write
in interface java.io.DataOutput
write
in class java.io.DataOutputStream
java.io.IOException
public void write(byte[] b, int off, int len) throws java.io.IOException
len
bytes from the specified byte array
starting at offset off
to the underlying output stream.
If no exception is thrown, the counter written
is
incremented by len
.
write
in interface java.io.DataOutput
write
in class java.io.DataOutputStream
b
- the data.off
- the start offset in the data.len
- the number of bytes to write.
java.io.IOException
- if an I/O error occurs.FilterOutputStream.out
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |