Interface Executor.Resolve<T>

Type Parameters:
T - The type of the value to resolve.
Enclosing interface:
Executor<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Executor.Resolve<T>
Functional interface for resolving the Promise.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onInvoke(T value)
    Method to call for resolving the Promise
  • Method Details

    • onInvoke

      void onInvoke(T value)
      Method to call for resolving the Promise
      Parameters:
      value - The value to resolve.