Uses of Class
com.redwood.scheduler.api.rtx.RTXRow
-
Packages that use RTXRow Package Description com.redwood.scheduler.api.job Scheduler API - Interfaces for user defined jobs.com.redwood.scheduler.api.rtx Redwood Table XML API. -
-
Uses of RTXRow in com.redwood.scheduler.api.job
Method parameters in com.redwood.scheduler.api.job with type arguments of type RTXRow Modifier and Type Method Description default Iterable<Job>
UserJobContext. loopOverNextJobChainStep(SchedulerSession session, RTXProducer producer, Predicate<RTXRow> filter)
Loop over the next step in the current job chain.Iterable<Job>
UserJobContext. loopOverNextJobChainStep(SchedulerSession session, RTXProducer producer, Predicate<RTXRow> filter, String jobDescription)
Loop over the next step in the current job chain.default Iterable<Job>
UserJobContext. loopOverNextJobChainStep(SchedulerSession session, RTXReader reader, Predicate<RTXRow> filter)
-
Uses of RTXRow in com.redwood.scheduler.api.rtx
Methods in com.redwood.scheduler.api.rtx that return RTXRow Modifier and Type Method Description RTXRow
RTXRow. copy(RTXMetadata newMetadata)
default RTXRow
RTXConsumer. newRow()
Create an empty row (you will need to add it later).RTXRow
RTXProducer. next()
RTXRow
RTXReader. next()
Methods in com.redwood.scheduler.api.rtx that return types with arguments of type RTXRow Modifier and Type Method Description Iterator<RTXRow>
RTXProducer. iterator()
Iterator<RTXRow>
RTXProducer. iterator(String... cols)
Return an iterator with a subset of columns.Iterator<RTXRow>
RTXReader. iterator()
Iterator<RTXRow>
RTXReader. iterator(String... columns)
Iterable<RTXRow>
RTXProducer. rows()
Return anIterable
for rows from the current position on, this can only be used to retrieve a single iterator.Iterable<RTXRow>
RTXProducer. rows(String... cols)
Iterable<RTXRow>
RTXReader. rows()
Iterable<RTXRow>
RTXReader. rows(String... columns)
Methods in com.redwood.scheduler.api.rtx with parameters of type RTXRow Modifier and Type Method Description List<RTXColumn>
RTXRow. addAllMatching(RTXRow other)
Add all matching columns from the other row to this row.void
RTXConsumer. addRow(RTXRow row)
Adds arow
void
RTXWriter. addRow(RTXRow row)
T
RTXRowRELScript. call(RTXRow row, SchedulerSession session)
Call the script.T
RTXRowRELScript. call(RTXRow row, SchedulerSession session, Map<String,Object> parameters)
Call the script.
-