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

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

Introduction

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

Prototype

@Deprecated
public static void addIntHeader(HttpMessage message, CharSequence name, int value) 

Source Link

Usage

From source file:com.cu.http.container.core.adaptor.NettyServletResponse.java

License:Apache License

public void addIntHeader(String name, int value) {
    HttpHeaders.addIntHeader(this.originalResponse, name, value);
}

From source file:com.ebay.jetstream.http.netty.server.DefaultHttpServletResponse.java

License:MIT License

@Override
public void addIntHeader(String arg0, int arg1) {
    HttpHeaders.addIntHeader(m_nettyhttpresp, arg0, Integer.valueOf(arg1));
}

From source file:com.soho.framework.server.servlet.impl.HttpServletResponseImpl.java

License:Apache License

@Override
public void addIntHeader(String name, int value) {
    HttpHeaders.addIntHeader(this.originalResponse, name, value);
}

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

License:Apache License

public void addIntHeader(CharSequence name, int value) {
    HttpHeaders.addIntHeader(nettyRequest, name, value);
}

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

License:Apache License

public void addIntHeader(String name, int value) {
    HttpHeaders.addIntHeader(nettyRequest, name, value);
}

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

License:Apache License

public void addIntHeader(CharSequence name, int value) {
    HttpHeaders.addIntHeader(nettyResponse, name, value);
}

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

License:Apache License

public void addIntHeader(String name, int value) {
    HttpHeaders.addIntHeader(nettyResponse, name, value);
}