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 AbstractRxInvoker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tdelete()<R> Tdelete(jakarta.ws.rs.core.GenericType<R> responseType)<R> Tdelete(Class<R> responseType)Tget()<R> Tget(jakarta.ws.rs.core.GenericType<R> responseType)<R> Tget(Class<R> responseType)Thead()Tmethod(String name)Tmethod(String name, jakarta.ws.rs.client.Entity<?> entity)<R> Tmethod(String name, jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)<R> Tmethod(String name, jakarta.ws.rs.core.GenericType<R> responseType)<R> Tmethod(String name, Class<R> responseType)Toptions()<R> Toptions(jakarta.ws.rs.core.GenericType<R> responseType)<R> Toptions(Class<R> responseType)Tpost(jakarta.ws.rs.client.Entity<?> entity)<R> Tpost(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)<R> Tpost(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)Tput(jakarta.ws.rs.client.Entity<?> entity)<R> Tput(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)<R> Tput(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)Ttrace()<R> Ttrace(jakarta.ws.rs.core.GenericType<R> responseType)<R> Ttrace(Class<R> responseType)
-
-
-
Method Detail
-
get
public <R> T get(Class<R> responseType)
- Specified by:
getin interfacejakarta.ws.rs.client.RxInvoker<T>
-
get
public <R> T get(jakarta.ws.rs.core.GenericType<R> responseType)
- Specified by:
getin interfacejakarta.ws.rs.client.RxInvoker<T>
-
put
public T put(jakarta.ws.rs.client.Entity<?> entity)
- Specified by:
putin interfacejakarta.ws.rs.client.RxInvoker<T>
-
put
public <R> T put(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
- Specified by:
putin interfacejakarta.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:
putin interfacejakarta.ws.rs.client.RxInvoker<T>
-
post
public T post(jakarta.ws.rs.client.Entity<?> entity)
- Specified by:
postin interfacejakarta.ws.rs.client.RxInvoker<T>
-
post
public <R> T post(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)
- Specified by:
postin interfacejakarta.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:
postin interfacejakarta.ws.rs.client.RxInvoker<T>
-
delete
public <R> T delete(Class<R> responseType)
- Specified by:
deletein interfacejakarta.ws.rs.client.RxInvoker<T>
-
delete
public <R> T delete(jakarta.ws.rs.core.GenericType<R> responseType)
- Specified by:
deletein interfacejakarta.ws.rs.client.RxInvoker<T>
-
options
public <R> T options(Class<R> responseType)
- Specified by:
optionsin interfacejakarta.ws.rs.client.RxInvoker<T>
-
options
public <R> T options(jakarta.ws.rs.core.GenericType<R> responseType)
- Specified by:
optionsin interfacejakarta.ws.rs.client.RxInvoker<T>
-
trace
public <R> T trace(Class<R> responseType)
- Specified by:
tracein interfacejakarta.ws.rs.client.RxInvoker<T>
-
trace
public <R> T trace(jakarta.ws.rs.core.GenericType<R> responseType)
- Specified by:
tracein interfacejakarta.ws.rs.client.RxInvoker<T>
-
method
public T method(String name)
- Specified by:
methodin interfacejakarta.ws.rs.client.RxInvoker<T>
-
method
public <R> T method(String name, Class<R> responseType)
- Specified by:
methodin interfacejakarta.ws.rs.client.RxInvoker<T>
-
method
public <R> T method(String name, jakarta.ws.rs.core.GenericType<R> responseType)
- Specified by:
methodin interfacejakarta.ws.rs.client.RxInvoker<T>
-
method
public T method(String name, jakarta.ws.rs.client.Entity<?> entity)
- Specified by:
methodin interfacejakarta.ws.rs.client.RxInvoker<T>
-
-