Uses of Interface
com.redwood.scheduler.api.model.Table
-
Packages that use Table Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.compatibility_14 -
-
Uses of Table in com.redwood.scheduler.api.model
Fields in com.redwood.scheduler.api.model with type parameters of type Table Modifier and Type Field Description static QueryObjectType<Table>
Table. TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.Methods in com.redwood.scheduler.api.model that return Table Modifier and Type Method Description Table
SchedulerSession. createTable()
Return a new instance of Table.static Table
TableFinder. findTable(SchedulerSession session, String tableName)
Find a table based on its name, in a case insensitive manner.static Table
TableFinder. findVariablesTable(SchedulerSession session)
Find the system variables table.Table
SchedulerSession. getMemoryTableByName(Partition partition, String tableName)
Gets the memory table by name, returns table by partition and name.Table
SchedulerSession. getMemoryTableByName(String tableName)
Get memory table by name, uses GLOBAL as default partition.Table
TableValue. getTable()
Get the Table.static Table
BusinessKeyLookup. getTableByBusinessKey(SchedulerSession session, String key)
Query an instance ofTable
, based on its business key.Table
BusinessKeyResolver. getTableByKey(BusinessKey key)
Query an instance ofTable
, based on its business key.Table
Partition. getTableByName(String name)
Get the Table by Name.Table
SchedulerSession. getTableByName(Partition partition, String name)
Get theTable
by Name.Table
SchedulerSession. getTableByName(String name)
Get theTable
by Name.Table
SchedulerSession. getTableByUniqueId(Long uniqueId)
Get theTable
by UniqueId.Methods in com.redwood.scheduler.api.model that return types with arguments of type Table Modifier and Type Method Description RWIterable<Table>
Application. getChildTables()
Get anRWIterable
over a collection ofChildTables
, the collection will be ordered by Name.RWIterable<Table>
Partition. getTables()
Get anRWIterable
over an ordered collection ofTables
.RWIterable<Table>
TableDefinition. getTables()
Get anRWIterable
over an ordered collection ofTables
.Methods in com.redwood.scheduler.api.model with parameters of type Table Modifier and Type Method Description void
AbstractConcreteObjectCallback. handle(Table theTable)
void
ConcreteObjectCallback. handle(Table theTable)
void
JobParameter. setInValueTableParameter(Table table)
This will set the type of the TableParameter toTable
, and set the business key correctly to referencetable
.void
JobParameter. setOutValueTableParameter(Table table)
This will set the type of the TableParameter toTable
, and set the business key correctly to referencetable
. -
Uses of Table in com.redwood.scheduler.api.model.compatibility_14
Methods in com.redwood.scheduler.api.model.compatibility_14 that return types with arguments of type Table Modifier and Type Method Description Iterator<Table>
ApplicationComp. getChildTables()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useApplication.getChildTables()
instead.Iterator<Table>
PartitionComp. getTables()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, usePartition.getTables()
instead.Iterator<Table>
TableDefinitionComp. getTables()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTables()
instead.
-