com.tivoli.twg.engine
Interface TWGQueueElement

All Known Implementing Classes:
TWGLogTracker

public interface TWGQueueElement

This interface should be implemented by those classes that need to have instances executed when removed from a process queue. Current supported queues are the "timer" queue and the "batch" queue. See TWGQueueTimer and TWGQueueBatch respectively.


Field Summary
static int QTYPE_BATCH
           
static int QTYPE_TIMER
           
 
Method Summary
 void process(int qType)
          Method called when this element is removed from a queue.
 

Field Detail

QTYPE_TIMER

public static final int QTYPE_TIMER
See Also:
Constant Field Values

QTYPE_BATCH

public static final int QTYPE_BATCH
See Also:
Constant Field Values
Method Detail

process

public void process(int qType)
Method called when this element is removed from a queue.