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, Date defaultValue) 

Source Link

Usage

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

License:Apache License

public Date getDate(Date defaultValue) {
    return HttpHeaders.getDate(nettyRequest, defaultValue);
}

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

License:Apache License

public Date getDate(Date defaultValue) {
    return HttpHeaders.getDate(nettyResponse, defaultValue);
}