Class AbstractRxInvoker<T>

java.lang.Object
org.jboss.resteasy.reactive.client.impl.AbstractRxInvoker<T>
All Implemented Interfaces:
jakarta.ws.rs.client.RxInvoker<T>
Direct Known Subclasses:
MultiInvoker, UniInvoker

public abstract class AbstractRxInvoker<T> extends Object implements jakarta.ws.rs.client.RxInvoker<T>
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
     
    <R> T
    delete(jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    delete(Class<R> responseType)
     
    get()
     
    <R> T
    get(jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    get(Class<R> responseType)
     
     
    method(String name)
     
    method(String name, jakarta.ws.rs.client.Entity<?> entity)
     
    <R> T
    method(String name, jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
     
    <R> T
    method(String name, jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    method(String name, Class<R> responseType)
     
     
    <R> T
    options(jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    options(Class<R> responseType)
     
    post(jakarta.ws.rs.client.Entity<?> entity)
     
    <R> T
    post(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    post(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
     
    put(jakarta.ws.rs.client.Entity<?> entity)
     
    <R> T
    put(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    put(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
     
     
    <R> T
    trace(jakarta.ws.rs.core.GenericType<R> responseType)
     
    <R> T
    trace(Class<R> responseType)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface jakarta.ws.rs.client.RxInvoker

    method
  • Constructor Details

    • AbstractRxInvoker

      public AbstractRxInvoker()
  • Method Details

    • get

      public T get()
      Specified by:
      get in interface jakarta.ws.rs.client.RxInvoker<T>
    • get

      public <R> T get(Class<R> responseType)
      Specified by:
      get in interface jakarta.ws.rs.client.RxInvoker<T>
    • get

      public <R> T get(jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      get in interface jakarta.ws.rs.client.RxInvoker<T>
    • put

      public T put(jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      put in interface jakarta.ws.rs.client.RxInvoker<T>
    • put

      public <R> T put(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
      Specified by:
      put in interface jakarta.ws.rs.client.RxInvoker<T>
    • put

      public <R> T put(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      put in interface jakarta.ws.rs.client.RxInvoker<T>
    • post

      public T post(jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      post in interface jakarta.ws.rs.client.RxInvoker<T>
    • post

      public <R> T post(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
      Specified by:
      post in interface jakarta.ws.rs.client.RxInvoker<T>
    • post

      public <R> T post(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      post in interface jakarta.ws.rs.client.RxInvoker<T>
    • delete

      public T delete()
      Specified by:
      delete in interface jakarta.ws.rs.client.RxInvoker<T>
    • delete

      public <R> T delete(Class<R> responseType)
      Specified by:
      delete in interface jakarta.ws.rs.client.RxInvoker<T>
    • delete

      public <R> T delete(jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      delete in interface jakarta.ws.rs.client.RxInvoker<T>
    • head

      public T head()
      Specified by:
      head in interface jakarta.ws.rs.client.RxInvoker<T>
    • options

      public T options()
      Specified by:
      options in interface jakarta.ws.rs.client.RxInvoker<T>
    • options

      public <R> T options(Class<R> responseType)
      Specified by:
      options in interface jakarta.ws.rs.client.RxInvoker<T>
    • options

      public <R> T options(jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      options in interface jakarta.ws.rs.client.RxInvoker<T>
    • trace

      public T trace()
      Specified by:
      trace in interface jakarta.ws.rs.client.RxInvoker<T>
    • trace

      public <R> T trace(Class<R> responseType)
      Specified by:
      trace in interface jakarta.ws.rs.client.RxInvoker<T>
    • trace

      public <R> T trace(jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      trace in interface jakarta.ws.rs.client.RxInvoker<T>
    • method

      public T method(String name)
      Specified by:
      method in interface jakarta.ws.rs.client.RxInvoker<T>
    • method

      public <R> T method(String name, Class<R> responseType)
      Specified by:
      method in interface jakarta.ws.rs.client.RxInvoker<T>
    • method

      public <R> T method(String name, jakarta.ws.rs.core.GenericType<R> responseType)
      Specified by:
      method in interface jakarta.ws.rs.client.RxInvoker<T>
    • method

      public T method(String name, jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      method in interface jakarta.ws.rs.client.RxInvoker<T>
    • method

      public <R> T method(String name, jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
      Specified by:
      method in interface jakarta.ws.rs.client.RxInvoker<T>