Package | Description |
---|---|
com.streambase.liveview.client |
Provides classes and interfaces fundamental to the TIBCO Live Datamart Java API.
|
com.streambase.liveview.client.dynamictables |
Provides classes and interfaces to configure TIBCO Live Datamart server's dynamic tables.
|
com.streambase.sb |
Provides classes and interfaces fundamental to the TIBCO StreamBase Java API.
|
com.streambase.sb.client |
Provides classes and interfaces used to communicate with a StreamBase server.
|
com.streambase.sb.feedsim | |
com.streambase.sb.monitor |
Provides classes and interfaces to monitor the behavior of a running StreamBase server.
|
com.streambase.sb.operator |
Provides classes and interfaces to add custom operators to StreamBase applications.
|
com.streambase.sb.operator.parameter |
Provides classes and interfaces to specify parameters for custom operators.
|
com.streambase.sb.unittest |
Provides classes and interfaces used to author StreamBase Unit tests.
|
Modifier and Type | Method and Description |
---|---|
Schema |
SendTupleInfo.getResponseOutputSchema() |
Schema |
QueryListenerWrapper.getSchema() |
Schema |
TablePublisher.getSchema()
Schema needed to create tuples for the publish method.
|
Schema |
SendTupleInfo.getTargetInputSchema() |
Modifier and Type | Method and Description |
---|---|
void |
TableAdminManager.createTable(java.lang.String tableName,
java.lang.String description,
Schema schema,
java.util.List<java.util.List<java.lang.String>> indices)
Create a table on the server without any LVConf which represents it.
|
void |
TableAdminManager.createTable(java.lang.String tableName,
java.lang.String description,
Schema schema,
java.lang.String... primaryKeyFields)
Convenience form of the previous method, used if there is only a primary key, and that key is only a single field.
|
Tuple |
LiveViewConnection.sendTupleAction(StreamBaseURI sbUri,
java.lang.String targetInputStreamName,
Tuple tuple,
java.lang.String responseOutputStreamName,
Schema expectedResponseSchema,
long timeout,
java.util.concurrent.TimeUnit unit)
Sends a tuple to an existing StreamBase application.
|
void |
QueryListenerWrapper.setSchema(Schema schema) |
Constructor and Description |
---|
AbstractTable(Schema schema,
java.util.List<java.lang.String> keyFieldNames) |
AbstractTable(Schema schema,
java.lang.String keyFieldNamesCSV) |
SendTupleInfo(StreamBaseURI sbUri,
java.lang.String inputStreamName,
java.lang.String outputStreamName,
Schema inputSchema,
Schema outputSchema) |
Modifier and Type | Method and Description |
---|---|
TableConfig |
TableConfig.setSchema(Schema sbSchema)
This method is used to set the schema for the table being configured.
|
Modifier and Type | Field and Description |
---|---|
static Schema |
Schema.EMPTY_SCHEMA
An empty schema
|
Modifier and Type | Method and Description |
---|---|
Schema |
SchemaMismatchException.getActualSchema() |
Schema |
CompleteDataType.getArgumentSchema()
For function types, return the argument schema.
|
Schema |
CompleteDataType.FunctionType.getArgumentSchema() |
Schema |
Function.getArgumentSchema()
Returns Schema for the input argument types of the function.
|
Schema |
TupleCaptureTransformer.getCollapsedSchema() |
static Schema |
Schema.getErrorSchema() |
Schema |
TupleCaptureTransformer.getExpandedSchema() |
Schema |
SchemaMismatchException.getExpectedSchema() |
Schema |
Schema.getLocallyDefinedFields() |
Schema |
SchemaUtil.SchemaProvider.getNamedSchema(java.lang.String name)
A request to provide a Schema for the given name.
|
Schema |
CompleteDataType.getSchema()
For tuple types, return the tuple's schema.
|
Schema |
CompleteDataType.TupleType.getSchema() |
Schema |
Schema.Field.getSchema()
Return the schema for this field.
|
Schema |
StreamProperties.getSchema()
Return the stream's Schema
|
Schema |
Tuple.getSchema()
Return the Schema for this Tuple
|
Schema |
SchemaUtil.SchemaProvider.getSchemaByHash(byte[] hash)
request a schema by hash
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Schema> |
Schema.getParentSchemas() |
Modifier and Type | Method and Description |
---|---|
static Schema.Field |
Schema.createFunctionField(java.lang.String fieldName,
Schema argumentSchema,
CompleteDataType returnType)
Creates a new Field of type FUNCTION, with the given name, argument list and return type.
|
static Schema.Field |
Schema.createTupleField(java.lang.String name,
Schema schema)
Creates a new Field of type TUPLE, with the given name and given schema
|
boolean |
Schema.equalsNoCapture(Schema scm) |
static CompleteDataType.FunctionType |
CompleteDataType.forFunction(Schema argumentSchema,
CompleteDataType returnType)
Return a function's
CompleteDataType with the given argument schema and return type |
static CompleteDataType |
CompleteDataType.forTuple(Schema schema)
Return a tuple complete data type with the specified schema.
|
boolean |
Schema.isSubsetOf(Schema schema)
Returns true if this schema's fields are a subset of the supplied schema's fields
Does not recursively test nested schemas for subsetness.
|
boolean |
Schema.isSupersetOf(Schema schema)
Returns true if this schema's fields are a superset of the supplied schema's fields
Does not recursively test nested schemas for subsetness.
|
void |
SchemaUtil.SchemaTraversal.run(Schema schema,
java.lang.String path)
run the schema visitor
|
boolean |
Schema.sameFieldsAs(Schema other)
Returns true if this schema has the same field types and names
in the same order as another Schema.
|
boolean |
Schema.sameFieldTypes(Schema other)
Returns true if this schema has the same field types
in the same order as another Schema
|
void |
SchemaUtil.SchemaTraversal.visitSchema(Schema schema,
java.lang.String fieldPath)
This method will be called for each and every schema
|
Constructor and Description |
---|
CompiledTuple(Schema schema) |
Field(java.lang.String name,
DataType dataType,
Schema s)
Deprecated.
Use
Schema.Field#Field(String, CompleteDataType) instead with
new Schema(name, CompleteDataType.forTuple(s)), or Schema.createTupleField(String, Schema) |
FunctionType(Schema arguments,
CompleteDataType returnType) |
Schema(Schema baseSchema)
Construct a Schema from another schema
|
Schema(java.lang.String name,
Schema baseSchema)
Construct a Schema with a new name from another schema
|
SchemaMismatchException(com.streambase.sb.util.LocatedItem loc,
java.lang.String msg,
Schema exp,
Schema act) |
TupleCopier(Schema sourceSchema,
Schema destSchema,
boolean strict)
Create the TupleCopier.
|
TupleCopier(Schema sourceSchema,
Schema destSchema,
java.util.EnumSet<TupleCopier.Options> options)
Create the TupleCopier.
|
TupleType(Schema schema) |
Modifier and Type | Method and Description |
---|---|
Schema |
DequeueResult.getSchema()
Returns the schema for the tuples dequeued, may return null
|
Schema |
StreamBaseClient.getSchemaByHash(byte[] hash)
Return the Schema object for the given hash value
|
Schema |
StreamBaseClient.getSchemaByName(java.lang.String name)
Return the Schema object for the given name.
|
Schema |
StreamBaseClient.getSchemaForStream(java.lang.String streamName)
Return the schema of a stream.
|
Modifier and Type | Method and Description |
---|---|
abstract Schema |
FeedSimTupleInputStream.getSchema()
This method must return the Schema of the data to be returned by readTuple()
|
Modifier and Type | Field and Description |
---|---|
static Schema |
StreamBaseMonitor.STAT_SCHEMA
The stats schema.
|
static Schema |
StreamBaseMonitor.STAT_SCHEMA_V3
The v3 stats schema.
|
Modifier and Type | Method and Description |
---|---|
Schema |
StreamBaseMonitor.getStatsSchema()
Get the stats schema
|
Modifier and Type | Method and Description |
---|---|
Schema |
Operator.getDynamicVariablesSchema()
Retrieves a Schema containing information about every dynamic variable available
to the module this operator is contained in.
|
Schema |
Operator.getInputSchema(int port)
Returns the schema of an input port.
|
Schema |
Operator.getNamedSchema(java.lang.String name)
Retrieves a named schema
|
Schema |
Operator.getOutputSchema(int outputPort)
Return the output schema for the given output port (zero-based).
|
Schema[] |
Operator.getProposedInputSchemas(java.lang.String mainName)
Override to provide schemas that Studio will offer to users to import into their projects.
|
Schema[] |
Operator.getProposedOutputSchemas(java.lang.String mainName)
Override to provide schemas that Studio will offer to users to import into their projects.
|
Schema |
Operator.getRuntimeInputSchema(int port)
Returns the schema of an input port at runtime.
|
Schema |
Operator.getRuntimeOutputSchema(int outputPort)
Return the output schema that should actually use to
Operator.sendOutput(int, Tuple) or Operator.sendOutputAsync(int, Tuple) . |
Schema |
TableAccessor.getSchema()
The schema for rows in this table.
|
Schema |
Operator.getSchemaForCapture(java.lang.String captureName,
int depth)
Finds the schema for the given capture name in the context that this operator
is running under.
|
Schema |
Operator.getTypecheckInputSchema(int port)
Returns the schema of an input port that was set at application typecheck
time.
|
Schema |
Operator.getTypecheckOutputSchema(int outputPort)
Return the output schema as set by typecheck.
|
Schema |
Operator.setOutputSchema(int port,
Schema outputSchema)
Sets the output schema for the given output port (port #'s are zero
based).
|
Modifier and Type | Method and Description |
---|---|
TupleCaptureTransformer |
Operator.getTupleCaptureTransformer(Schema s)
Get a TupleCaptureTransformer capable of translating tuples with the given schema to the equivalent
schema with all the capture fields expanded out, and translating expanded tuples back into tuples with
the given schema
This method may only be called at runtime; the exact schemas of any capture fields are not fully determined
at typecheck time.
|
PreparedQuery |
TableAccessor.prepare(java.lang.String predicate,
Schema args)
Prepare an index-accessing query.
|
Schema |
Operator.setOutputSchema(int port,
Schema outputSchema)
Sets the output schema for the given output port (port #'s are zero
based).
|
Modifier and Type | Method and Description |
---|---|
Schema[] |
StudioAssistSchemaFieldPicker.getSchemasForFieldPicker(java.lang.String propertyName,
Schema[] inputSchemas)
Assists Studio in presenting a schema field picker to the user, for
String[] property types
with UIHints that have set UIHints.setAssociateFieldPicker(boolean) to true . |
Modifier and Type | Method and Description |
---|---|
Schema[] |
StudioAssistSchemaFieldPicker.getSchemasForFieldPicker(java.lang.String propertyName,
Schema[] inputSchemas)
Assists Studio in presenting a schema field picker to the user, for
String[] property types
with UIHints that have set UIHints.setAssociateFieldPicker(boolean) to true . |
Modifier and Type | Method and Description |
---|---|
Schema |
Dequeuer.getSchema()
|
Schema |
Enqueuer.getSchema()
|
Modifier and Type | Method and Description |
---|---|
Tuple |
ObjectArrayTupleMaker.createTuple(Schema schema,
java.lang.Object[] objs) |
Tuple |
CSVTupleMaker.createTuple(Schema schema,
java.lang.String str) |
Tuple |
JSONSingleQuotesTupleMaker.createTuple(Schema schema,
java.lang.String str) |
Tuple |
JSONTupleMaker.createTuple(Schema schema,
java.lang.String str) |
abstract Tuple |
AbstractTupleMaker.createTuple(Schema schema,
T t) |
Tuple |
TupleMaker.createTuple(Schema schema,
T t)
create a
Tuple s from an input object |
java.util.List<Tuple> |
AbstractTupleMaker.createTuples(Schema schema,
java.util.Collection<T> ts) |
java.util.List<Tuple> |
TupleMaker.createTuples(Schema schema,
java.util.Collection<T> t)
create multiple
Tuple s from input objects |
java.util.List<Tuple> |
AbstractTupleMaker.createTuples(Schema schema,
T... ts) |
java.util.List<Tuple> |
TupleMaker.createTuples(Schema schema,
T... t)
create multiple
Tuple s from input objects |