|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.jppf.io.StreamOutputDestination
public class StreamOutputDestination
Output destination backed by an OutputStream.
| Constructor Summary | |
|---|---|
StreamOutputDestination(OutputStream os)
Initialize this input source with the specified data. |
|
| Method Summary | |
|---|---|
void |
close()
Close this output destination and release any system resources associated with it. |
int |
write(byte[] buffer,
int offset,
int len)
Write data to this output destination from an array of bytes. |
int |
write(ByteBuffer buffer)
Write data to this output destination from a byte buffer. |
void |
writeInt(int value)
Write an int value to this output destination. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public StreamOutputDestination(OutputStream os)
os - the output stream to write to.| Method Detail |
|---|
public int write(byte[] buffer,
int offset,
int len)
throws Exception
write in interface OutputDestinationbuffer - the buffer containing the data to write.offset - the position in the buffer where to start reading the data.len - the size in bvytes of the data to write.
Exception - if an IO error occurs.OutputDestination.write(byte[], int, int)
public int write(ByteBuffer buffer)
throws Exception
write in interface OutputDestinationbuffer - the buffer containing the data to write.
Exception - if an IO error occurs.OutputDestination.write(java.nio.ByteBuffer)
public void writeInt(int value)
throws Exception
writeInt in interface OutputDestinationvalue - the value to write.
Exception - if an IO error occurs.OutputDestination.writeInt(int)
public void close()
throws IOException
close in interface CloseableIOException - if an IO error occurs.Closeable.close()
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||