Interface NeoTimesI.ITimesCallback<T,E>

All Superinterfaces:
Asyncc.IAsyncCallback<T,E>
Enclosing class:
NeoTimesI

public static interface NeoTimesI.ITimesCallback<T,E> extends Asyncc.IAsyncCallback<T,E>
  • Field Summary

    Fields inherited from interface org.ores.async.Asyncc.IAsyncCallback

    isDone
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    done(E e, T v)
    Fire the continuation with either an error or a value (never both).

    Methods inherited from interface org.ores.async.Asyncc.IAsyncCallback

    fail, setDone, success
  • Method Details

    • done

      void done(E e, T v)
      Description copied from interface: Asyncc.IAsyncCallback
      Fire the continuation with either an error or a value (never both).
      Specified by:
      done in interface Asyncc.IAsyncCallback<T,E>
      Parameters:
      e - the error, or null for success
      v - the value, or null when e is non-null