Example usage for io.netty.handler.codec.http HttpHeaders clearHeaders

List of usage examples for io.netty.handler.codec.http HttpHeaders clearHeaders

Introduction

In this page you can find the example usage for io.netty.handler.codec.http HttpHeaders clearHeaders.

Prototype

@Deprecated
public static void clearHeaders(HttpMessage message) 

Source Link

Usage

From source file:io.reactivex.netty.protocol.http.client.HttpRequestHeaders.java

License:Apache License

public void clearHeaders() {
    HttpHeaders.clearHeaders(nettyRequest);
}

From source file:io.reactivex.netty.protocol.http.server.HttpResponseHeaders.java

License:Apache License

public void clearHeaders() {
    HttpHeaders.clearHeaders(nettyResponse);
}