Interface RxListenableFutureInvoker

  • All Superinterfaces:
    jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> delete()  
      <T> com.google.common.util.concurrent.ListenableFuture<T> delete​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> delete​(Class<T> responseType)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> get()  
      <T> com.google.common.util.concurrent.ListenableFuture<T> get​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> get​(Class<T> responseType)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> head()  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> method​(String name)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> method​(String name, jakarta.ws.rs.client.Entity<?> entity)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> method​(String name, jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> method​(String name, jakarta.ws.rs.client.Entity<?> entity, Class<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> method​(String name, jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> method​(String name, Class<T> responseType)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> options()  
      <T> com.google.common.util.concurrent.ListenableFuture<T> options​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> options​(Class<T> responseType)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> post​(jakarta.ws.rs.client.Entity<?> entity)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> post​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> type)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> post​(jakarta.ws.rs.client.Entity<?> entity, Class<T> clazz)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> put​(jakarta.ws.rs.client.Entity<?> entity)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> put​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> type)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> put​(jakarta.ws.rs.client.Entity<?> entity, Class<T> clazz)  
      com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> trace()  
      <T> com.google.common.util.concurrent.ListenableFuture<T> trace​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> com.google.common.util.concurrent.ListenableFuture<T> trace​(Class<T> responseType)  
    • Method Detail

      • get

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> get()
        Specified by:
        get in interface jakarta.ws.rs.client.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 jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • get

        <T> com.google.common.util.concurrent.ListenableFuture<T> get​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • put

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> put​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • put

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

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

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> post​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • post

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

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

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> delete()
        Specified by:
        delete in interface jakarta.ws.rs.client.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 jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • delete

        <T> com.google.common.util.concurrent.ListenableFuture<T> delete​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • head

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

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> options()
        Specified by:
        options in interface jakarta.ws.rs.client.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 jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • options

        <T> com.google.common.util.concurrent.ListenableFuture<T> options​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • trace

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> trace()
        Specified by:
        trace in interface jakarta.ws.rs.client.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 jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • trace

        <T> com.google.common.util.concurrent.ListenableFuture<T> trace​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • method

        com.google.common.util.concurrent.ListenableFuture<jakarta.ws.rs.core.Response> method​(String name)
        Specified by:
        method in interface jakarta.ws.rs.client.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 jakarta.ws.rs.client.RxInvoker<com.google.common.util.concurrent.ListenableFuture>
      • method

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

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

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

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