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

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

Introduction

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

Prototype

@Deprecated
public static Date getDate(HttpMessage message) throws ParseException 

Source Link

Usage

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

License:Apache License

public Date getDate() throws ParseException {
    return HttpHeaders.getDate(nettyRequest);
}

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

License:Apache License

public Date getDate() throws ParseException {
    return HttpHeaders.getDate(nettyResponse);
}

From source file:reactor.io.net.impl.netty.http.NettyHttpResponseHeaders.java

License:Open Source License

@Override
public Date getDate() throws ParseException {
    return HttpHeaders.getDate(this.nettyResponse);
}

From source file:rxweb.engine.server.netty.NettyRequestHeadersAdapter.java

License:Apache License

@Override
public Date getDate() throws ParseException {
    return HttpHeaders.getDate(this.nettyRequest);
}