Class | Description |
---|---|
AbstractThreadingProfileProcessingStrategy |
A abstract
ProcessingStrategy implementation that provides a
ThreadingProfile for you in extensions configured via setters for each of the threading
profile attributes. |
AsynchronousProcessingStrategy |
This strategy uses a
WorkManager to schedule the processing of the pipeline of message processors
in a single worker thread. |
NonBlockingProcessingStrategy |
Allows Mule to use non-blocking execution model where possible and free up threads when performing IO
operations.
|
QueuedAsynchronousProcessingStrategy |
This strategy uses a
QueueManager to decouple receipt and processing of messages. |
QueuedThreadPerProcessorProcessingStrategy |
This strategy uses the
QueueManager to decouple the processing of each message processor. |
SynchronousProcessingStrategy |
This strategy processes all message processors in the calling thread.
|
ThreadPerProcessorProcessingStrategy |
This strategy uses a
WorkManager to schedule the processing of each message processors in a new
worker thread. |
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.