EsFutureImpl
          Description
          An <EsFutureImpl> is the default implementation class for the abstract <EsFuture>
          Instance State
          
          <EsFutureListener>s listeners
          
          It is an error to try to complete it again. resultOrListeners holds listeners.
          
          of this future as well. resultOrListeners contains the source future.
          
          
          value or error.
          
          complete, and it is not chained to another future 
          
          and when it does, this future will complete with the same result. All listeners are forwarded to the other future
          Class Methods
          None
          Instance Methods
          
    catch:if:
  Handles errors emitted by this future.
    
     @see EsFuture>>catch:if: for a complete description
     of the specification this method implements
    
     Arguments:
        onError - <Block> 2-arg culled block providing the error and stackTrace
        shouldCatchError - <Block> test block to determine if catch is applicable
                                       <UndefinedObject> implicit test block [true]
     Answers:
        <EsFuture>
 
    ensure:
  Registers an @onCompletion action to be called when this future completes.
   
     @see EsFuture>>ensure: for a complete description
     of the specification this method implements
    
    Arguments:
        onCompletion - <Block> 0-arg
    Answers:
        <EsFuture>
 
    then:catch:
  Register handlers to be evaluated when this future completes.
    
     @see EsFuture>>then:catch: for a complete description
     of the specification this method implements
    
     Arguments:
        onValue - <Block> 0 or 1-arg injected with completed value (if any)
        onError - <Block> 0, 1 to 2-arg injected with completed error and stack trace
     Answers:
        <EsFuture>
 
    timeout:then:
  Timeout the future computation after @aDurationOrMs has passed.
    
     @see EsFuture>>timeout:then: for a complete description
     of the specification this method implements
    
     Arguments:
        aDurationOrMs - <Duration> duration object
                                    <Integer> duration in milliseconds
        onTimeout - <Block> 0-arg block
     Answers:
        <EsFuture>
  
        
          Last modified date: 12/26/2024