Interface FastFaiHttpClientResponse

  • All Superinterfaces:
    io.vertx.core.http.HttpClientResponse, io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>, io.vertx.core.streams.StreamBase

    public interface FastFaiHttpClientResponse
    extends io.vertx.core.http.HttpClientResponse
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String msg  
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default io.vertx.core.http.HttpClientResponse bodyHandler​(io.vertx.core.Handler<io.vertx.core.buffer.Buffer> bodyHandler)  
      default List<String> cookies()  
      default io.vertx.core.http.HttpClientResponse customFrameHandler​(io.vertx.core.Handler<io.vertx.core.http.HttpFrame> handler)  
      default io.vertx.core.http.HttpClientResponse endHandler​(io.vertx.core.Handler<Void> endHandler)  
      default io.vertx.core.http.HttpClientResponse exceptionHandler​(io.vertx.core.Handler<Throwable> handler)  
      default io.vertx.core.http.HttpClientResponse fetch​(long amount)  
      default String getHeader​(CharSequence headerName)  
      default String getHeader​(String headerName)  
      default String getTrailer​(String trailerName)  
      default io.vertx.core.http.HttpClientResponse handler​(io.vertx.core.Handler<io.vertx.core.buffer.Buffer> handler)  
      default io.vertx.core.MultiMap headers()  
      default io.vertx.core.net.NetSocket netSocket()  
      default io.vertx.core.http.HttpClientResponse pause()  
      default io.vertx.core.http.HttpClientRequest request()  
      default io.vertx.core.http.HttpClientResponse resume()  
      default int statusCode()  
      default String statusMessage()  
      default io.vertx.core.http.HttpClientResponse streamPriorityHandler​(io.vertx.core.Handler<io.vertx.core.http.StreamPriority> handler)  
      default io.vertx.core.MultiMap trailers()  
      default io.vertx.core.http.HttpVersion version()  
    • Method Detail

      • fetch

        default io.vertx.core.http.HttpClientResponse fetch​(long amount)
        Specified by:
        fetch in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        fetch in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
      • resume

        default io.vertx.core.http.HttpClientResponse resume()
        Specified by:
        resume in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        resume in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
      • exceptionHandler

        default io.vertx.core.http.HttpClientResponse exceptionHandler​(io.vertx.core.Handler<Throwable> handler)
        Specified by:
        exceptionHandler in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        exceptionHandler in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
        Specified by:
        exceptionHandler in interface io.vertx.core.streams.StreamBase
      • handler

        default io.vertx.core.http.HttpClientResponse handler​(io.vertx.core.Handler<io.vertx.core.buffer.Buffer> handler)
        Specified by:
        handler in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        handler in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
      • pause

        default io.vertx.core.http.HttpClientResponse pause()
        Specified by:
        pause in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        pause in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
      • endHandler

        default io.vertx.core.http.HttpClientResponse endHandler​(io.vertx.core.Handler<Void> endHandler)
        Specified by:
        endHandler in interface io.vertx.core.http.HttpClientResponse
        Specified by:
        endHandler in interface io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
      • version

        default io.vertx.core.http.HttpVersion version()
        Specified by:
        version in interface io.vertx.core.http.HttpClientResponse
      • statusCode

        default int statusCode()
        Specified by:
        statusCode in interface io.vertx.core.http.HttpClientResponse
      • statusMessage

        default String statusMessage()
        Specified by:
        statusMessage in interface io.vertx.core.http.HttpClientResponse
      • headers

        default io.vertx.core.MultiMap headers()
        Specified by:
        headers in interface io.vertx.core.http.HttpClientResponse
      • getHeader

        default String getHeader​(String headerName)
        Specified by:
        getHeader in interface io.vertx.core.http.HttpClientResponse
      • getHeader

        default String getHeader​(CharSequence headerName)
        Specified by:
        getHeader in interface io.vertx.core.http.HttpClientResponse
      • getTrailer

        default String getTrailer​(String trailerName)
        Specified by:
        getTrailer in interface io.vertx.core.http.HttpClientResponse
      • trailers

        default io.vertx.core.MultiMap trailers()
        Specified by:
        trailers in interface io.vertx.core.http.HttpClientResponse
      • cookies

        default List<String> cookies()
        Specified by:
        cookies in interface io.vertx.core.http.HttpClientResponse
      • bodyHandler

        default io.vertx.core.http.HttpClientResponse bodyHandler​(io.vertx.core.Handler<io.vertx.core.buffer.Buffer> bodyHandler)
        Specified by:
        bodyHandler in interface io.vertx.core.http.HttpClientResponse
      • customFrameHandler

        default io.vertx.core.http.HttpClientResponse customFrameHandler​(io.vertx.core.Handler<io.vertx.core.http.HttpFrame> handler)
        Specified by:
        customFrameHandler in interface io.vertx.core.http.HttpClientResponse
      • netSocket

        default io.vertx.core.net.NetSocket netSocket()
        Specified by:
        netSocket in interface io.vertx.core.http.HttpClientResponse
      • request

        default io.vertx.core.http.HttpClientRequest request()
        Specified by:
        request in interface io.vertx.core.http.HttpClientResponse
      • streamPriorityHandler

        default io.vertx.core.http.HttpClientResponse streamPriorityHandler​(io.vertx.core.Handler<io.vertx.core.http.StreamPriority> handler)
        Specified by:
        streamPriorityHandler in interface io.vertx.core.http.HttpClientResponse