Uses of Class
org.ogf.saga.stream.StreamInputStream

Packages that use StreamInputStream
org.ogf.saga.stream The streams package provides a simple mechanism for setting up connections to remote components. 
 

Uses of StreamInputStream in org.ogf.saga.stream
 

Methods in org.ogf.saga.stream that return StreamInputStream
 StreamInputStream Stream.getInputStream()
          Obtains an InputStream from the stream.
 

Methods in org.ogf.saga.stream that return types with arguments of type StreamInputStream
abstract  Task<StreamInputStream,Integer> StreamInputStream.available(TaskMode mode)
          Creates a task that determines how many bytes are available from this stream.
abstract  Task<StreamInputStream,Void> StreamInputStream.close(TaskMode mode)
          Creates a task that closes this stream.
 Task<Stream,StreamInputStream> Stream.getInputStream(TaskMode mode)
          Creates a task that obtains an OutputStream from the stream.
abstract  Task<StreamInputStream,Void> StreamInputStream.mark(TaskMode mode, int readlimit)
          Creates a task that marks the current position in this stream.
abstract  Task<StreamInputStream,Boolean> StreamInputStream.markSupported(TaskMode mode)
          Creates a task that determines if InputStream.mark(int) is supported.
abstract  Task<StreamInputStream,Integer> StreamInputStream.read(TaskMode mode)
          Creates a task that reads a byte from this stream.
 Task<StreamInputStream,Integer> StreamInputStream.read(TaskMode mode, byte[] buf)
          Creates a task that reads a buffer from this stream.
abstract  Task<StreamInputStream,Integer> StreamInputStream.read(TaskMode mode, byte[] buf, int off, int len)
          Creates task that reads (part of) a buffer from this stream.
abstract  Task<StreamInputStream,Void> StreamInputStream.reset(TaskMode mode)
          Creates a task that resets the position to the position last marked.
abstract  Task<StreamInputStream,Long> StreamInputStream.skip(TaskMode mode, long n)
          Creates a task that skips the specified number of bytes from this stream.
 



Copyright © 2014 Open Grid Forum. All rights reserved.