Abstract interface for application queue. More...
#include <ApplicationQueueInterface.h>
Public Member Functions | |
virtual void | add (ApplicationHandler *app_handler)=0 |
Adds an application handler to queue. More... | |
virtual void | add_unlocked (ApplicationHandler *app_handler)=0 |
Adds an application handler to queue without locking. More... | |
Abstract interface for application queue.
Definition at line 42 of file ApplicationQueueInterface.h.
|
pure virtual |
Adds an application handler to queue.
Implemented in Hypertable::ApplicationQueue, Hypertable::TableMutatorQueue, and Hypertable::TableScannerQueue.
|
pure virtual |
Adds an application handler to queue without locking.
This method is similar to add except that it does not do any locking to serialize access to the queue. It is for situations where access serialization is handled by the caller.
Implemented in Hypertable::ApplicationQueue, Hypertable::TableMutatorQueue, and Hypertable::TableScannerQueue.