Uses of Interface
com.redwood.scheduler.api.model.APIResultSetCallback
-
Packages that use APIResultSetCallback Package Description com.redwood.scheduler.api.jdbc Scheduler API - JDBC utilitiescom.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.report Scheduler API - Reporting interfaces. -
-
Uses of APIResultSetCallback in com.redwood.scheduler.api.jdbc
Classes in com.redwood.scheduler.api.jdbc that implement APIResultSetCallback Modifier and Type Class Description class
InternalToolResultSet
REDWOOD INTERNAL USE ONLY, NOT FOR CUSTOMER USE. -
Uses of APIResultSetCallback in com.redwood.scheduler.api.model
Classes in com.redwood.scheduler.api.model that implement APIResultSetCallback Modifier and Type Class Description class
CollectionCallback<T>
Add all objects to the specified collection.class
GetCountCallBack
Use for select count(*) from X queries, it stores the result of the count as int, which can be retrieved by calling getCount() after.class
LimitedUniqueIdListAPIResultSetCallback
class
LongCallBack
APIResultSetCallback implementation for retrieving the Long value present in the first column of the result set.class
LongListCallback
APIResultSetCallback implementation for retrieving the long value present in the first column of the result set.class
StringCallback
Use this callback if you have a query which selects 1 String column and the query returns 1 row (result).class
UniqueIdListAPIResultSetCallback
Fields in com.redwood.scheduler.api.model declared as APIResultSetCallback Modifier and Type Field Description static APIResultSetCallback
APIResultSetCallback. NULL
Methods in com.redwood.scheduler.api.model with parameters of type APIResultSetCallback Modifier and Type Method Description void
SchedulerSession. executeQuery(String query, Object[] parameters, APIResultSetCallback callback)
Execute the given query and return the object that represents it.void
SchedulerEntity. processRelatedObjects(APIResultSetCallback callback)
!!!! PROTOTYPE IMPLEMENTATION !!!! The callback is called for every object that has a foreign key to this object.void
SchedulerEntity. processRelatedObjects(APIResultSetCallback callback, Collection<String> include)
!!!! PROTOTYPE IMPLEMENTATION !!!! The callback is called for every object that has a foreign key to this object.void
SchedulerEntity. processRelatedObjects(APIResultSetCallback callback, Collection<String> include, boolean exportableObjectsOnly)
!!!! PROTOTYPE IMPLEMENTATION !!!! The callback is called for every object that has a foreign key to this object. -
Uses of APIResultSetCallback in com.redwood.scheduler.api.model.report
Subinterfaces of APIResultSetCallback in com.redwood.scheduler.api.model.report Modifier and Type Interface Description interface
ReportDestination
A destination for report results.
-