Interface RxListenableFutureInvoker

All Superinterfaces:
RxInvoker<com.google.common.util.concurrent.ListenableFuture>

public interface RxListenableFutureInvoker extends RxInvoker<com.google.common.util.concurrent.ListenableFuture>
Reactive invoker providing support for ListenableFuture from Guava.
Since:
2.13
Author:
Michal Gajdos
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.common.util.concurrent.ListenableFuture<Response>
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    delete(GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    delete(Class<T> responseType)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
    get()
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    get(GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    get(Class<T> responseType)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
     
    com.google.common.util.concurrent.ListenableFuture<Response>
    method(String name)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
    method(String name, Entity<?> entity)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    method(String name, Entity<?> entity, GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    method(String name, Entity<?> entity, Class<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    method(String name, GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    method(String name, Class<T> responseType)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    options(GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    options(Class<T> responseType)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
    post(Entity<?> entity)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    post(Entity<?> entity, GenericType<T> type)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    post(Entity<?> entity, Class<T> clazz)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
    put(Entity<?> entity)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    put(Entity<?> entity, GenericType<T> type)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    put(Entity<?> entity, Class<T> clazz)
     
    com.google.common.util.concurrent.ListenableFuture<Response>
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    trace(GenericType<T> responseType)
     
    <T> com.google.common.util.concurrent.ListenableFuture<T>
    trace(Class<T> responseType)
     
  • Method Details

    • get

      com.google.common.util.concurrent.ListenableFuture<Response> get()
      Specified by:
      get in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • get

      <T> com.google.common.util.concurrent.ListenableFuture<T> get(Class<T> responseType)
      Specified by:
      get in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • get

      <T> com.google.common.util.concurrent.ListenableFuture<T> get(GenericType<T> responseType)
      Specified by:
      get in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • put

      com.google.common.util.concurrent.ListenableFuture<Response> put(Entity<?> entity)
      Specified by:
      put in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • put

      <T> com.google.common.util.concurrent.ListenableFuture<T> put(Entity<?> entity, Class<T> clazz)
      Specified by:
      put in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • put

      <T> com.google.common.util.concurrent.ListenableFuture<T> put(Entity<?> entity, GenericType<T> type)
      Specified by:
      put in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • post

      com.google.common.util.concurrent.ListenableFuture<Response> post(Entity<?> entity)
      Specified by:
      post in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • post

      <T> com.google.common.util.concurrent.ListenableFuture<T> post(Entity<?> entity, Class<T> clazz)
      Specified by:
      post in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • post

      <T> com.google.common.util.concurrent.ListenableFuture<T> post(Entity<?> entity, GenericType<T> type)
      Specified by:
      post in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • delete

      com.google.common.util.concurrent.ListenableFuture<Response> delete()
      Specified by:
      delete in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • delete

      <T> com.google.common.util.concurrent.ListenableFuture<T> delete(Class<T> responseType)
      Specified by:
      delete in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • delete

      <T> com.google.common.util.concurrent.ListenableFuture<T> delete(GenericType<T> responseType)
      Specified by:
      delete in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • head

      com.google.common.util.concurrent.ListenableFuture<Response> head()
      Specified by:
      head in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • options

      com.google.common.util.concurrent.ListenableFuture<Response> options()
      Specified by:
      options in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • options

      <T> com.google.common.util.concurrent.ListenableFuture<T> options(Class<T> responseType)
      Specified by:
      options in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • options

      <T> com.google.common.util.concurrent.ListenableFuture<T> options(GenericType<T> responseType)
      Specified by:
      options in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • trace

      com.google.common.util.concurrent.ListenableFuture<Response> trace()
      Specified by:
      trace in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • trace

      <T> com.google.common.util.concurrent.ListenableFuture<T> trace(Class<T> responseType)
      Specified by:
      trace in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • trace

      <T> com.google.common.util.concurrent.ListenableFuture<T> trace(GenericType<T> responseType)
      Specified by:
      trace in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      com.google.common.util.concurrent.ListenableFuture<Response> method(String name)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      <T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, Class<T> responseType)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      <T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, GenericType<T> responseType)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      com.google.common.util.concurrent.ListenableFuture<Response> method(String name, Entity<?> entity)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      <T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, Entity<?> entity, Class<T> responseType)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>
    • method

      <T> com.google.common.util.concurrent.ListenableFuture<T> method(String name, Entity<?> entity, GenericType<T> responseType)
      Specified by:
      method in interface RxInvoker<com.google.common.util.concurrent.ListenableFuture>