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

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

Introduction

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

Prototype

CharSequence CHUNKED

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

Click Source Link

Document

chunked header value

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());
}