org.hibernate.search.backend.impl
Interface QueueingProcessor

All Known Implementing Classes:
BatchedQueueingProcessor

public interface QueueingProcessor

Pile work operations No thread safety has to be implemented, the queue being scoped already The implementation must be "stateless" wrt the queue through (ie not store the queue state) FIXME this Interface does not make much sense, since the impl will not be changed

Author:
Emmanuel Bernard

Method Summary
 void add(Work work, WorkQueue workQueue)
          Add a work TODO move that somewhere else, it does not really fit here
 void cancelWorks(WorkQueue workQueue)
          Rollback works
 void performWorks(WorkQueue workQueue)
          Execute works
 void prepareWorks(WorkQueue workQueue)
          prepare resources for a later performWorks call
 

Method Detail

add

void add(Work work,
         WorkQueue workQueue)
Add a work TODO move that somewhere else, it does not really fit here


prepareWorks

void prepareWorks(WorkQueue workQueue)
prepare resources for a later performWorks call


performWorks

void performWorks(WorkQueue workQueue)
Execute works


cancelWorks

void cancelWorks(WorkQueue workQueue)
Rollback works



Copyright © 2006-2012 Red Hat Middleware, LLC. All Rights Reserved