Uses of Package
com.google.common.util.concurrent

Packages that use com.google.common.util.concurrent
com.google.common.util.concurrent Concurrency utilities. 
 

Classes in com.google.common.util.concurrent used by com.google.common.util.concurrent
AbstractFuture
          An abstract implementation of the Future interface.
AbstractListenableFuture
          An abstract base implementation of the listener support provided by ListenableFuture.
CheckedFuture
          A CheckedFuture is an extension of Future that includes versions of the get methods that can throw a checked exception and allows listeners to be attached to the future.
ForwardingFuture
          A Future which forwards all its method calls to another future.
ListenableFuture
          This interface defines a future that has listeners attached to it, which is useful for asynchronous workflows.
ThreadFactoryBuilder
          A ThreadFactory builder, providing any combination of these features: whether threads should be marked as daemon threads a naming format a thread priority an uncaught exception handler a backing thread factory If no backing thread factory is provided, a default backing thread factory is used as if by calling setThreadFactory(Executors.defaultThreadFactory()).
TimeLimiter
          Produces proxies that impose a time limit on method calls to the proxied object.
UninterruptibleFuture
          A Future whose get calls cannot be interrupted.
ValueFuture
          A ListenableFuture whose result may be set by a ValueFuture.set(Object) or ValueFuture.setException(Throwable) call.
 



Copyright © 2010 Google. All Rights Reserved.