|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BlockReader | |
uk.org.ogsadai.activity | Contains the core interfaces and classes of the Activity Framework. |
uk.org.ogsadai.activity.delivery | This package provides classes implementing delivery activities. |
uk.org.ogsadai.activity.delivery.wsrf | This package provides classes implementing delivery activities that are specific to WSRF-compliant versions of OGSA-DAI. |
uk.org.ogsadai.activity.examples | Various example activities that may be of interest to activity developers. |
uk.org.ogsadai.activity.files | Activities for writing and reading files. |
uk.org.ogsadai.activity.indexedfiles | Activities for indexing and searching text files using the Apache Lucene search engine. |
uk.org.ogsadai.activity.misc | Contains miscellaneous activity implementations for which no suitable common group exists. |
uk.org.ogsadai.activity.relational | Contains activities that retrieve logical and physical metadata from a relational database. |
uk.org.ogsadai.activity.sql | Activities that provide SQL access to a relational data resource. |
uk.org.ogsadai.activity.sql.parameters | Helper classes for SQL activities which manage the various input streams for parameters. |
uk.org.ogsadai.activity.transform | Contains activity implementations for transforming data from one format into another. |
uk.org.ogsadai.activity.xmldb | Contains activity implementations for performing various operations on XML databases. |
uk.org.ogsadai.activity.xmldb.commands | Contains a command interface and various implementations for use by the XML database activities. |
uk.org.ogsadai.client.toolkit.activity.delivery | This package provides classes that provide a client-side representation of delivery activities in Java. |
uk.org.ogsadai.common | This package provides a set of common classes and interfaces supporting all the other OGSA-DAI components. |
uk.org.ogsadai.engine | Contains the core classes and interfaces of the engine component which is chiefly responsible for processing requests and building responses. |
uk.org.ogsadai.sessions | Contains the core classes and interfaces used to support sessions. |
Uses of BlockReader in uk.org.ogsadai.activity |
Classes in uk.org.ogsadai.activity that implement BlockReader | |
(package private) class |
CallThroughExternalPipe This is a simple unsynchronized Pipe with a variable length internal buffer. |
(package private) class |
CallThroughPipe This is a simple unsynchronized Pipe with a variable length internal buffer. |
class |
SynchronizedGrowableExternalPipe This is a pipe designed to be shared between multiple writer threads and a single reader thread. |
class |
SynchronizedGrowablePipe This is a pipe designed to be shared between multiple writers threads and a single reader thread. |
Fields in uk.org.ogsadai.activity declared as BlockReader | |
private BlockReader |
ResultActivity.mInput Data is read from here. |
Methods in uk.org.ogsadai.activity that return BlockReader | |
BlockReader |
ActivityContext.getInput(java.lang.String name) Gets the BlockReader for an internal input to the activity. |
Constructors in uk.org.ogsadai.activity with parameters of type BlockReader | |
ResultActivity(java.lang.String name, BlockReader input) Constructs an activity for a dangling output that will generate the data to be contained in the response. |
Uses of BlockReader in uk.org.ogsadai.activity.delivery |
Fields in uk.org.ogsadai.activity.delivery declared as BlockReader | |
private BlockReader |
InputStreamActivity.mInput Activity input - data from client via data transport operations |
protected BlockReader |
AbstractDeliverToAddressActivity.mInput Activity input - output from another activity |
private BlockReader |
DeliverToStreamActivity.mInput Activity input - output from another activity |
private BlockReader |
DeliverToNullActivity.mInput Activity input - output from another activity |
private BlockReader |
OutputStreamActivity.mInput Activity input - output from another activity |
private BlockReader |
DeliverToResourcePropertyActivity.mInput Activity input - output from another activity |
private BlockReader |
AbstractDeliverToDTActivity.mInput Activity input stream. |
private BlockReader |
DeliverToSMTPActivity.mInput Activity input - output from another activity |
private BlockReader |
DeliverToAttachmentActivity.mInput Activity input |
Methods in uk.org.ogsadai.activity.delivery with parameters of type BlockReader | |
static void |
DeliverToStreamServlet.addStream(java.lang.String url, java.lang.String resourceId, SessionID sessionId, java.lang.String streamId, BlockReader reader) Add a data stream to the list of streams available from this servlet. |
Uses of BlockReader in uk.org.ogsadai.activity.delivery.wsrf |
Fields in uk.org.ogsadai.activity.delivery.wsrf declared as BlockReader | |
private BlockReader |
DeliverToGFTPActivity.mInput Activity input - data from another activity |
Uses of BlockReader in uk.org.ogsadai.activity.examples |
Fields in uk.org.ogsadai.activity.examples declared as BlockReader | |
private BlockReader |
ExampleActivity.mInput Activity input stream. |
private BlockReader |
DemoExternalInputActivity.mInput External input |
Uses of BlockReader in uk.org.ogsadai.activity.files |
Fields in uk.org.ogsadai.activity.files declared as BlockReader | |
private BlockReader |
FileWritingActivity.mInput The output from another activity, from which to read text to write into the file. |
Uses of BlockReader in uk.org.ogsadai.activity.indexedfiles |
Fields in uk.org.ogsadai.activity.indexedfiles declared as BlockReader | |
private BlockReader |
AddAndIndexFileActivity.mInput Activity input - new data file |
private BlockReader |
FileReadingActivity.mInput Activity input - names of files to read |
Uses of BlockReader in uk.org.ogsadai.activity.misc |
Fields in uk.org.ogsadai.activity.misc declared as BlockReader | |
private BlockReader |
NotificationActivity.mDataInput Input stream |
private BlockReader |
DataStoreActivity.mInput Input from which data may be read before activity processing begins. |
Uses of BlockReader in uk.org.ogsadai.activity.relational |
Fields in uk.org.ogsadai.activity.relational declared as BlockReader | |
private BlockReader |
DatabaseSchemaToXMLActivity.mInput Activity's only input - database metadata |
Uses of BlockReader in uk.org.ogsadai.activity.sql |
Classes in uk.org.ogsadai.activity.sql that implement BlockReader | |
class |
NonBufferingPipe This is a simple unsynchronized Pipe with no internal buffer. |
Fields in uk.org.ogsadai.activity.sql declared as BlockReader | |
protected BlockReader |
SQLResultToBytesActivity.mInput Reader that provides the activity's only input |
private BlockReader |
RemoveDuplicatesWebRowSetActivity.mInput Activity input. |
private BlockReader |
SQLResultsToCSVActivity.mInput Activity input - java.sql.ResultSet |
private BlockReader |
SQLBulkLoadRowSetActivity.mInput Activity input - WebRowSet |
private BlockReader |
ResultsetProjectionActivity.mInput Activity input - java.sql.ResultSet |
private BlockReader |
SQLResultsToXMLActivity.mInput Activity input - java.sql.ResultSet |
Methods in uk.org.ogsadai.activity.sql with parameters of type BlockReader | |
protected java.sql.ResultSet |
SQLResultToBytesActivity.getResultSet(BlockReader inputReader) Gets the result set from the input reader. |
Uses of BlockReader in uk.org.ogsadai.activity.sql.parameters |
Fields in uk.org.ogsadai.activity.sql.parameters declared as BlockReader | |
private BlockReader |
StreamInput.mInput Activity output stream from another activity |
Constructors in uk.org.ogsadai.activity.sql.parameters with parameters of type BlockReader | |
StreamInput(BlockReader reader) Constructor. |
Uses of BlockReader in uk.org.ogsadai.activity.transform |
Fields in uk.org.ogsadai.activity.transform declared as BlockReader | |
private BlockReader |
RandomSampleActivity.mInput Activity input. |
private BlockReader |
WebRowSetProjectionActivity.mInput Activity input. |
private BlockReader |
StringTokenizerActivity.mInput Input string data. |
private BlockReader |
XSLTransformActivity.mInputXML Activity input - XML to be transformed |
private BlockReader |
XSLTransformActivity.mInputXSLT Activity input - XSLT transformation |
private BlockReader |
GZIPCompressionActivity.mInput Activity input - data to be compressed |
protected BlockReader |
BytesToTempFileActivity.mInput Reader that provides the activity's only input |
private BlockReader |
CSVProjectionActivity.mInput Activity input. |
private BlockReader |
GZIPDecompressionActivity.mCompressedInput Activity input - compressed data |
private BlockReader |
FrequencyDistributorActivity.mInput Activity input. |
private BlockReader |
BlockAggregatorActivity.mInput Activity input |
Uses of BlockReader in uk.org.ogsadai.activity.xmldb |
Fields in uk.org.ogsadai.activity.xmldb declared as BlockReader | |
private BlockReader |
XMLBulkLoadActivity.mInput Input stream from another activity, providing the resources |
Uses of BlockReader in uk.org.ogsadai.activity.xmldb.commands |
Methods in uk.org.ogsadai.activity.xmldb.commands that return BlockReader | |
BlockReader |
CommandContext.getInput(java.lang.String inputName) Get the named input for the Command to interact with. |
BlockReader |
CommandContextImpl.getInput(java.lang.String inputName) |
Uses of BlockReader in uk.org.ogsadai.client.toolkit.activity.delivery |
Classes in uk.org.ogsadai.client.toolkit.activity.delivery that implement BlockReader | |
class |
DataTransportBlockReader A BlockReader implementation which fetches each block from an output stream exposed by a data service resource exposed by a data service using the service's get operations. |
Uses of BlockReader in uk.org.ogsadai.common |
Fields in uk.org.ogsadai.common declared as BlockReader | |
private BlockReader |
BlockReaderReader.mBlockReader |
private BlockReader |
BlockReaderInputStream.mBlockReader |
Constructors in uk.org.ogsadai.common with parameters of type BlockReader | |
BlockReaderReader(BlockReader blockReader) Constructs a new object that wraps the given BlockReader . |
|
BlockReaderInputStream(BlockReader blockReader) Constructs a new object that wraps the given BlockReader . |
Uses of BlockReader in uk.org.ogsadai.engine |
Subinterfaces of BlockReader in uk.org.ogsadai.engine | |
interface |
Pipe Utility interface to aggregate uk.org.ogsadai.common.BlockReader and uk.org.ogsadai.common.BlockWriter together |
Classes in uk.org.ogsadai.engine that implement BlockReader | |
class |
SimplePipe A simple implementation of a Pipe that can contain a single object. |
class |
SynchronizedPipe A simple fixed-sized synchronized pipe that uses a circular buffer to store blocks of data. |
Uses of BlockReader in uk.org.ogsadai.sessions |
Methods in uk.org.ogsadai.sessions that return BlockReader | |
private BlockReader |
SimpleSessionStreamManager.getBlockReader(SessionStreamID id) Gets the BlockReader for the identified session output stream. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |