Uses of Interface
org.syrup.PTaskTemplate

Packages that use PTaskTemplate
org.syrup Provides all the basic Syrup interfaces. 
org.syrup.helpers Provides the most used implementations of Syrup interfaces. 
org.syrup.sql The concrete RDMS/JDBC implementation of Syrup. 
org.syrup.workers Provides for the default Worker implementations. 
 

Uses of PTaskTemplate in org.syrup
 

Methods in org.syrup with parameters of type PTaskTemplate
 PTask[] WorkSpace.match(PTaskTemplate template)
          Get PTasks matching the PTaskTemplate.
 Context[] WorkSpace.get(PTaskTemplate template)
          Get the Contexts of PTasks that match the PTaskTemplate.
 

Uses of PTaskTemplate in org.syrup.helpers
 

Classes in org.syrup.helpers that implement PTaskTemplate
 class PTaskTemplateImpl
          A generic PTaskTemplate implementation.
 

Uses of PTaskTemplate in org.syrup.sql
 

Methods in org.syrup.sql with parameters of type PTaskTemplate
 PTask[] GenericFunctions.match(PTaskTemplate template, SyrupConnection con)
          Get PTasks matching the PTaskTemplate.
 Context[] GenericFunctions.get(PTaskTemplate t, SyrupConnection con)
          Get the Contexts of PTasks that match the PTaskTemplate.
 PTask[] SQLWorkSpace.match(PTaskTemplate template)
           
 Context[] SQLWorkSpace.get(PTaskTemplate t)
           
 

Uses of PTaskTemplate in org.syrup.workers
 

Methods in org.syrup.workers with parameters of type PTaskTemplate
static int DefaultWorker.match(WorkSpace sp, PTaskTemplate template, java.io.OutputStream out)
          Return PTasks that match a PTaskTemplate by writing them out in XML format.
static int DefaultWorker.get(WorkSpace sp, PTaskTemplate template, java.io.OutputStream out)
          Get the Contexts that match a PTaskTemplate by writing them out in XML format.
static void DefaultWorker.execute(WorkSpace sp, PTaskTemplate template, long totalIterations, long pollInterval)
          Executes PTasks that match a PTaskTemplate by writing them out in XML format.