Class ProxyContext

java.lang.Object
io.vertx.rxjava3.httpproxy.ProxyContext
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class ProxyContext extends Object implements io.vertx.lang.rx.RxDelegate
A controller for proxy interception.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<ProxyContext> __TYPE_ARG
  • Constructor Details

    • ProxyContext

      public ProxyContext(ProxyContext delegate)
    • ProxyContext

      public ProxyContext(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public ProxyContext getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • 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 name
      value - any payload value
    • get

      public <T> T get(String name, Class<T> type)
      Get a payload attached to this context.
      Parameters:
      name - the payload name
      type - the expected payload type
      Returns:
      the attached payload
    • client

      public HttpClient client()
      Returns:
      the use to interact with the origin server
    • newInstance

      public static ProxyContext newInstance(ProxyContext arg)