Uses of Class
stormpot.Timeout

Packages that use Timeout
Package
Description
Stormpot
 
  • Uses of Timeout in stormpot

    Methods in stormpot with parameters of type Timeout
    Modifier and Type
    Method
    Description
    default <R> Optional<R>
    PoolTap.apply(Timeout timeout, Function<T,R> function)
    Claim an object from the pool and apply the given function to it, returning the result and releasing the object back to the pool.
    boolean
    Completion.await(Timeout timeout)
    Causes the current thread to wait until the completion is finished, or the thread is interrupted, or the specified waiting time elapses.
    PoolTap.claim(Timeout timeout)
    Claim the exclusive rights until released, to an object in the pool.
    default boolean
    PoolTap.supply(Timeout timeout, Consumer<T> consumer)
    Claim an object from the pool and supply it to the given consumer, and then release it back to the pool.
  • Uses of Timeout in stormpot.internal

    Methods in stormpot.internal with parameters of type Timeout
    Modifier and Type
    Method
    Description
    boolean
    StackCompletion.await(Timeout timeout)
     
    boolean
    StackCompletion.OnAwait.await(Timeout timeout)
    Implements the blocking await of a StackCompletion.
    BlazePool.claim(Timeout timeout)
     
    BlazePoolSingleThreadedTap.claim(Timeout timeout)
     
    BlazePoolThreadSafeTap.claim(Timeout timeout)
     
    BlazePoolVirtualThreadSafeTap.claim(Timeout timeout)