Uses of Interface
xsmeral.pipe.interfaces.ObjectProcessor

Packages that use ObjectProcessor
xsmeral.pipe Pipe implementation and exceptions 
xsmeral.pipe.interfaces Interfaces of processors (source, sink) and annotations 
xsmeral.pipe.stats Provides classes for tracking statistics of processors. 
 

Uses of ObjectProcessor in xsmeral.pipe
 

Classes in xsmeral.pipe that implement ObjectProcessor
 class AbstractObjectProcessor
          Implements basic functionality common for all object processors.
 class LocalObjectFilter<I,O>
          An object processor that serves the role of a filter.
 class LocalObjectSink<I>
          An object processor in the role of an object sink, usually persists objects.
 class LocalObjectSource<O>
          An object processor in the role of an object source, produces objects.
 

Methods in xsmeral.pipe that return ObjectProcessor
 ObjectProcessor AbstractObjectProcessor.initialize(Map<String,String> params)
          Initializes the processor.
 

Methods in xsmeral.pipe that return types with arguments of type ObjectProcessor
 List<ObjectProcessor> Pipe.getProcessors()
          Returns list of processors in this chain, order from input to output
 

Constructors in xsmeral.pipe with parameters of type ObjectProcessor
Pipe(ObjectProcessor[] processors)
          Does the same as calling Pipe(Arrays.asList(processors))
 

Constructor parameters in xsmeral.pipe with type arguments of type ObjectProcessor
Pipe(List<ObjectProcessor> processors)
          Initializes the pipe with supplied chain of processors and instantiates a context.
Pipe(List<ObjectProcessor> processors, Collection<AttachedProcessor> attached)
          In addition to Pipe.Pipe(java.util.List) also sets attached processors.
 

Uses of ObjectProcessor in xsmeral.pipe.interfaces
 

Methods in xsmeral.pipe.interfaces that return ObjectProcessor
 ObjectProcessor ObjectProcessor.initialize(Map<String,String> params)
          Initializes the processor.
 

Uses of ObjectProcessor in xsmeral.pipe.stats
 

Constructors in xsmeral.pipe.stats with parameters of type ObjectProcessor
Stats(ObjectProcessor processor)
          Convenience constructor, creates the stat with group equal to the processor's simple class name and its associated context.