Class Operations


  • public final class Operations
    extends java.lang.Object
    Common cancellable operations.
    Since:
    5.0
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Operations.CompletedFuture<T>
      This class represents a Future in the completed state with a fixed result.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static org.apache.hc.core5.concurrent.Cancellable NOOP_CANCELLABLE  
    • Constructor Summary

      Constructors 
      Constructor Description
      Operations()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static org.apache.hc.core5.concurrent.Cancellable cancellable​(java.util.concurrent.Future<?> future)
      Creates a Cancellable operation handle for an ongoing process or operation represented by a Future.
      static org.apache.hc.core5.concurrent.Cancellable nonCancellable()
      Creates a Cancellable operation handle for an ongoing process or operation that cannot be cancelled.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NOOP_CANCELLABLE

        private static final org.apache.hc.core5.concurrent.Cancellable NOOP_CANCELLABLE
    • Constructor Detail

      • Operations

        public Operations()
    • Method Detail

      • nonCancellable

        public static org.apache.hc.core5.concurrent.Cancellable nonCancellable()
        Creates a Cancellable operation handle for an ongoing process or operation that cannot be cancelled. Attempts to cancel the operation with this handle will have no effect.
        Returns:
        the no-op cancellable operation handle.
      • cancellable

        public static org.apache.hc.core5.concurrent.Cancellable cancellable​(java.util.concurrent.Future<?> future)
        Creates a Cancellable operation handle for an ongoing process or operation represented by a Future.
        Parameters:
        future - the result future
        Returns:
        the cancellable operation handle.