Package | Description |
---|---|
com.streambase.liveview.server.table.plugin |
Provides classes and interfaces to add custom table providers to TIBCO Live Datamart.
|
com.streambase.sb |
Provides classes and interfaces fundamental to the TIBCO StreamBase Java API.
|
com.streambase.sb.monitor |
Provides classes and interfaces to monitor the behavior of a running StreamBase server.
|
Modifier and Type | Method and Description |
---|---|
void |
TableProviderManager.startTables(java.util.List<java.lang.String> tables) |
Modifier and Type | Method and Description |
---|---|
ByteArrayView |
Tuple.getBlobBuffer(int fieldIndex)
Return a ByteArrayView for a given blob field.
|
ByteArrayView |
Tuple.getBlobBuffer(Schema.Field field)
Return a ByteArrayView for a given blob field.
|
ByteArrayView |
Tuple.getBlobBuffer(java.lang.String fieldPathName)
Return a ByteArrayView for a given blob field.
|
boolean |
Tuple.getBoolean(int fieldIndex)
Return the value of the boolean field at a specified field index.
|
boolean |
Tuple.getBoolean(Schema.Field field)
Return the value of a specified boolean field.
|
boolean |
Tuple.getBoolean(java.lang.String fieldPathName)
Return the value of a named boolean field.
|
Tuple |
Tuple.getCapture(int fieldIndex)
Return the value of the named capture field.
|
Tuple |
Tuple.getCapture(java.lang.String fieldPathName)
Return the value of the named capture field.
|
double |
Tuple.getDouble(int fieldIndex)
Return the value of the double field at a specified field index.
|
double |
Tuple.getDouble(Schema.Field field)
Return the value of a specified double field.
|
double |
Tuple.getDouble(java.lang.String fieldPathName)
Return the value of a named double field.
|
int |
TupleUtil.RepMethods.getFieldLength(Tuple tuple,
Schema.Field field) |
int |
Tuple.getInt(int fieldIndex)
Return the value of the int field at a specified field index.
|
int |
Tuple.getInt(Schema.Field field)
Return the value of a specified int field.
|
int |
Tuple.getInt(java.lang.String fieldPathName)
Return the value of a named int field.
|
java.util.List<?> |
Tuple.getList(int fieldIndex)
Return the value of the list field at a specified field index.
|
java.util.List<?> |
Tuple.getList(Schema.Field field)
Return the value of a specified list field.
|
java.util.List<?> |
Tuple.getList(java.lang.String fieldPathName)
Return the value of a named list field.
|
long |
Tuple.getLong(int fieldIndex)
Return the value of the long field at a specified field index.
|
long |
Tuple.getLong(Schema.Field field)
Return the value of a specified long field.
|
long |
Tuple.getLong(java.lang.String fieldPathName)
Return the value of a named long field.
|
java.lang.String |
Tuple.getString(int fieldIndex)
Return the value of the named string field.
|
java.lang.String |
Tuple.getString(Schema.Field field)
Return the value of a specified string field.
|
java.lang.String |
Tuple.getString(java.lang.String fieldPathName)
Return the value of the named string field.
|
Timestamp |
Tuple.getTimestamp(int fieldIndex)
Return the value of the timestamp field at a specified field index.
|
Timestamp |
Tuple.getTimestamp(Schema.Field field)
Return the value of a specified timestamp field.
|
Timestamp |
Tuple.getTimestamp(java.lang.String fieldPathName)
Return the value of a named timestamp field.
|
Tuple |
Tuple.getTuple(int fieldIndex)
Return a reference (not a copy) to the specified nested tuple field.
|
Tuple |
Tuple.getTuple(Schema.Field field)
Return a reference (not a copy) to the specified nested tuple field.
|
Tuple |
Tuple.getTuple(java.lang.String fieldPathName)
Return a reference (not a copy) to the specified nested tuple field.
|
void |
Tuple.setBoolean(int fieldIndex,
boolean value)
Set the boolean field at a specified field index to a specified value.
|
void |
Tuple.setBoolean(java.lang.String fieldPathName,
boolean value)
Set a named boolean field to a specified value.
|
void |
Tuple.setDouble(int fieldIndex,
double value)
Set the double field at a specified field index to a specified value.
|
void |
Tuple.setDouble(java.lang.String fieldPathName,
double value)
Set a named double field to a specified value.
|
void |
Tuple.setInt(int fieldIndex,
int value)
Set the int field at a specified field index to a specified value.
|
void |
Tuple.setInt(java.lang.String fieldPathName,
int value)
Set the named int field to a specified value.
|
void |
Tuple.setList(int fieldIndex,
java.util.List<?> value)
Set the list field at a specified field index to a copy of the specified value.
|
void |
Tuple.setList(java.lang.String fieldPathName,
java.util.List<?> value)
Set a named list field to a copy of a specified value.
|
void |
Tuple.setLong(int fieldIndex,
long value)
Set the long field at a specified field index to a specified value.
|
void |
Tuple.setLong(java.lang.String fieldPathName,
long value)
Set a named long field to a specified value.
|
Modifier and Type | Method and Description |
---|---|
StatTuplev3 |
StatsUtil.StatEncoder.unmarshal(Tuple t)
Retrieve data from tuple and returns a StatBuffer
|
StatTuplev3 |
StatsUtil.What.unmarshal(Tuple t)
Un-marshal a tuple to a StatTuple
|