Interface NeoWaterfallI.IAsyncCallback<T,E>

All Superinterfaces:
Asyncc.IAsyncCallback<Map.Entry<String,T>,E>
All Known Implementing Classes:
NeoWaterfallI.AsyncCallback
Enclosing class:
NeoWaterfallI

public static interface NeoWaterfallI.IAsyncCallback<T,E> extends Asyncc.IAsyncCallback<Map.Entry<String,T>,E>
  • Method Details

    • done

      void done(E e)
    • done

      void done(E e, Map.Entry<String,T> m)
      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
      m - the value, or null when e is non-null
    • done

      void done(E e, String k, T v)