| BalancedProviderFuture |
A more balanced implementation of a ProviderFuture that works better on some
platforms such as windows where the thread park and atomic operations used by
a more aggressive implementation could result in poor performance.
|
| ConservativeProviderFuture |
A more conservative implementation of a ProviderFuture that is better on some
platforms or resource constrained hardware where high CPU usage can be more
counter productive than other variants that might spin or otherwise avoid
entry into states requiring thread signalling.
|
| DefaultProviderListener |
Default implementation that does nothing for all callbacks.
|
| NoOpAsyncResult |
Simple NoOp implementation used when the result of the operation does not matter.
|
| ProgressiveProviderFuture |
An optimized version of a ProviderFuture that makes use of spin waits and other
methods of reacting to asynchronous completion in a more timely manner.
|
| ProviderConstants |
Set of Provider specific constants used when interacting with the Provider API.
|
| ProviderFactory |
Interface that all JMS Providers must implement.
|
| ProviderFuture |
Asynchronous Provider Future class.
|
| ProviderFutureFactory |
Factory for provider future instances that will create specific versions based on
configuration.
|
| ProviderWrapper<E extends Provider> |
Allows one Provider instance to wrap around another and provide some additional
features beyond the normal Provider interface.
|
| WrappedAsyncResult |
Base class used to wrap one AsyncResult with another.
|