Package com.wavefront.agent.queueing
Interface QueueingFactory
-
- All Known Implementing Classes:
QueueingFactoryImpl
public interface QueueingFactoryFactory forQueueProcessorinstances.- Author:
- [email protected]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends DataSubmissionTask<T>>
QueueController<T>getQueueController(HandlerKey handlerKey, int numThreads)Create a newQueueControllerinstance for the specified handler key.
-
-
-
Method Detail
-
getQueueController
<T extends DataSubmissionTask<T>> QueueController<T> getQueueController(@Nonnull HandlerKey handlerKey, int numThreads)
Create a newQueueControllerinstance for the specified handler key.- Type Parameters:
T- data submission task type.- Parameters:
handlerKey-HandlerKeyfor the queue controller.numThreads- number of threads to create processor tasks for.- Returns:
QueueControllerobject
-
-