Package | Description |
---|---|
org.ogf.saga.stream |
The streams package provides a simple mechanism for setting up
connections to remote components.
|
Modifier and Type | Method and Description |
---|---|
StreamOutputStream |
Stream.getOutputStream()
Obtains an OutputStream from the stream.
|
Modifier and Type | Method and Description |
---|---|
abstract Task<StreamOutputStream,Void> |
StreamOutputStream.close(TaskMode mode)
Creates a task that closes this stream.
|
abstract Task<StreamOutputStream,Void> |
StreamOutputStream.flush(TaskMode mode)
Creates a task that flushes this stream.
|
Task<Stream,StreamOutputStream> |
Stream.getOutputStream(TaskMode mode)
Creates a task that obtains an OutputStream from the stream.
|
Task<StreamOutputStream,Void> |
StreamOutputStream.write(TaskMode mode,
byte[] buf)
Creates a task that writes a buffer to this stream.
|
abstract Task<StreamOutputStream,Void> |
StreamOutputStream.write(TaskMode mode,
byte[] buf,
int off,
int len)
Creates a task that writes (part of) a buffer to this stream.
|
abstract Task<StreamOutputStream,Void> |
StreamOutputStream.write(TaskMode mode,
int b)
Creates a task that writes a byte to this stream.
|
Copyright © 2016 Open Grid Forum. All rights reserved.