Package org.apache.cxf.workqueue
Interface AutomaticWorkQueue
- 
- All Known Implementing Classes:
- AutomaticWorkQueueImpl
 
 public interface AutomaticWorkQueue extends WorkQueue 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Get's the name of the workqueuebooleanisShutdown()Returns true if this object has been shut down.voidshutdown(boolean processRemainingWorkItems)Initiates an orderly shutdown.
 
- 
- 
- 
Method Detail- 
getNameString getName() Get's the name of the workqueue- Returns:
- the name
 
 - 
shutdownvoid shutdown(boolean processRemainingWorkItems) Initiates an orderly shutdown. IfprocessRemainingWorkItemsis true, waits for all active items to finish execution before returning, otherwise returns immediately after removing all non active items from the queue.- Parameters:
- processRemainingWorkItems-
 
 - 
isShutdownboolean isShutdown() Returns true if this object has been shut down.- Returns:
- true if this object has been shut down.
 
 
- 
 
-