Interface Executable<T>

  • Type Parameters:
    T - the type of result produced by the execution.
    All Superinterfaces:
    Indexable

    public interface Executable<T>
    extends Indexable
    The base interface for all template interfaces that support execute operations.
    • Method Detail

      • execute

        T execute()
        Execute the request.
        Returns:
        execution result object
      • executeAsync

        Mono<T> executeAsync()
        Execute the request asynchronously.
        Returns:
        the handle to the REST call