Uses of Class
org.apache.qpid.jms.provider.ProviderFuture
-
Packages that use ProviderFuture Package Description org.apache.qpid.jms.provider org.apache.qpid.jms.provider.amqp org.apache.qpid.jms.provider.failover -
-
Uses of ProviderFuture in org.apache.qpid.jms.provider
Subclasses of ProviderFuture in org.apache.qpid.jms.provider Modifier and Type Class Description classBalancedProviderFutureA 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.classConservativeProviderFutureA 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.classProgressiveProviderFutureAn optimized version of a ProviderFuture that makes use of spin waits and other methods of reacting to asynchronous completion in a more timely manner.Fields in org.apache.qpid.jms.provider with type parameters of type ProviderFuture Modifier and Type Field Description protected static AtomicIntegerFieldUpdater<ProviderFuture>ProviderFuture. STATE_FIELD_UPDATERMethods in org.apache.qpid.jms.provider that return ProviderFuture Modifier and Type Method Description abstract ProviderFutureProviderFutureFactory. createFuture()abstract ProviderFutureProviderFutureFactory. createFuture(ProviderSynchronization synchronization)abstract ProviderFutureProviderFutureFactory. createUnfailableFuture()ProviderFutureProvider. newProviderFuture()Gets a ProviderFuture instance from the Provider for use in performing Provider calls that require an asynchronous completion to know when the call to the provider has succeeded or failed.ProviderFutureProvider. newProviderFuture(ProviderSynchronization synchronization)Gets a ProviderFuture instance from the Provider for use in performing Provider calls that require an asynchronous completion to know when the call to the provider has succeeded or failed.ProviderFutureProviderWrapper. newProviderFuture()ProviderFutureProviderWrapper. newProviderFuture(ProviderSynchronization synchronization) -
Uses of ProviderFuture in org.apache.qpid.jms.provider.amqp
Methods in org.apache.qpid.jms.provider.amqp that return ProviderFuture Modifier and Type Method Description ProviderFutureAmqpProvider. newProviderFuture()ProviderFutureAmqpProvider. newProviderFuture(ProviderSynchronization synchronization) -
Uses of ProviderFuture in org.apache.qpid.jms.provider.failover
Methods in org.apache.qpid.jms.provider.failover that return ProviderFuture Modifier and Type Method Description ProviderFutureFailoverProvider. newProviderFuture()ProviderFutureFailoverProvider. newProviderFuture(ProviderSynchronization synchronization)
-