Example usage for io.vertx.core.http HttpHeaders TRANSFER_ENCODING

List of usage examples for io.vertx.core.http HttpHeaders TRANSFER_ENCODING

Introduction

In this page you can find the example usage for io.vertx.core.http HttpHeaders TRANSFER_ENCODING.

Prototype

CharSequence TRANSFER_ENCODING

To view the source code for io.vertx.core.http HttpHeaders TRANSFER_ENCODING.

Click Source Link

Document

Transfer-Encoding header name

Usage

From source file:org.apache.servicecomb.foundation.vertx.http.HttpServletResponseEx.java

License:Apache License

default void setChunked(boolean chunked) {
    setHeader(HttpHeaders.TRANSFER_ENCODING.toString(), HttpHeaders.CHUNKED.toString());
}