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

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

Introduction

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

Prototype

@Deprecated
    public static void encodeAscii(CharSequence seq, ByteBuf buf) 

Source Link

Usage

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

License:Apache License

public void encodeAscii(CharSequence seq, ByteBuf buf) {
    HttpHeaders.encodeAscii(seq, buf);
}