Package io.vertx.rxjava3.httpproxy
Class ProxyContext
- java.lang.Object
-
- io.vertx.rxjava3.httpproxy.ProxyContext
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ProxyContext>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ProxyContext(ProxyContext delegate)
ProxyContext(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
<T> T
get(String name, Class<T> type)
Get a payload attached to this contextProxyContext
getDelegate()
int
hashCode()
boolean
isWebSocket()
static ProxyContext
newInstance(ProxyContext arg)
ProxyRequest
request()
ProxyResponse
response()
Single<ProxyResponse>
rxSendRequest()
Completable
rxSendResponse()
Single<ProxyResponse>
sendRequest()
Completable
sendResponse()
void
set(String name, Object value)
Attach a payload to the contextString
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ProxyContext> __TYPE_ARG
-
-
Constructor Detail
-
ProxyContext
public ProxyContext(ProxyContext delegate)
-
ProxyContext
public ProxyContext(Object delegate)
-
-
Method Detail
-
getDelegate
public ProxyContext getDelegate()
-
request
public ProxyRequest request()
- Returns:
- the proxy request
-
response
public ProxyResponse response()
- Returns:
- the proxy response, it might be
null
if the response has not been sent
-
sendRequest
public Single<ProxyResponse> sendRequest()
- Returns:
-
rxSendRequest
public Single<ProxyResponse> rxSendRequest()
- Returns:
-
sendResponse
public Completable sendResponse()
- Returns:
-
rxSendResponse
public Completable rxSendResponse()
- Returns:
-
isWebSocket
public boolean isWebSocket()
- Returns:
- if this request or response is the handshake of WebSocket
-
set
public void set(String name, Object value)
Attach a payload to the context- Parameters:
name
- the payload namevalue
- any payload value
-
get
public <T> T get(String name, Class<T> type)
Get a payload attached to this context- Parameters:
name
- the payload nametype
- the expected payload type- Returns:
- the attached payload
-
newInstance
public static ProxyContext newInstance(ProxyContext arg)
-
-