Uses of Interface
xsmeral.pipe.AttachedProcessor

Packages that use AttachedProcessor
xsmeral.pipe Pipe implementation and exceptions 
xsmeral.pipe.stats Provides classes for tracking statistics of processors. 
 

Uses of AttachedProcessor in xsmeral.pipe
 

Classes in xsmeral.pipe that implement AttachedProcessor
 class PipeAttachedProcessor
          Basic attached processor associated to a Pipe instance.
 

Methods in xsmeral.pipe that return AttachedProcessor
 AttachedProcessor AttachedProcessor.initialize(Map<String,String> params)
          Initializes the processor with given parameter map and returns itself.
 AttachedProcessor PipeAttachedProcessor.initialize(Map<String,String> params)
           
 

Methods in xsmeral.pipe that return types with arguments of type AttachedProcessor
 Collection<AttachedProcessor> Pipe.getAttached()
          Returns list of attached processors.
 

Constructor parameters in xsmeral.pipe with type arguments of type AttachedProcessor
Pipe(List<ObjectProcessor> processors, Collection<AttachedProcessor> attached)
          In addition to Pipe.Pipe(java.util.List) also sets attached processors.
 

Uses of AttachedProcessor in xsmeral.pipe.stats
 

Classes in xsmeral.pipe.stats that implement AttachedProcessor
 class StatsWriter
          Writes pipe context parameters to a file (or standard/error output) periodically.