本文整理了Java中io.vertx.core.http.HttpConnection.settings()
方法的一些代码示例,展示了HttpConnection.settings()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpConnection.settings()
方法的具体详情如下:
包路径:io.vertx.core.http.HttpConnection
类名称:HttpConnection
方法名:settings
暂无
代码示例来源:origin: io.vertx/vertx-rx-java
/**
* @return the latest server settings acknowledged by the remote endpoint - this is not implemented for HTTP/1.x
*/
public Http2Settings settings() {
Http2Settings ret = delegate.settings();
return ret;
}
代码示例来源:origin: vert-x3/vertx-rx
/**
* @return the latest server settings acknowledged by the remote endpoint - this is not implemented for HTTP/1.x
*/
public Http2Settings settings() {
Http2Settings ret = delegate.settings();
return ret;
}
代码示例来源:origin: io.vertx/vertx-lang-groovy
public static java.util.Map<String, Object> settings(io.vertx.core.http.HttpConnection j_receiver) {
return j_receiver.settings() != null ? io.vertx.core.impl.ConversionHelper.fromJsonObject(j_receiver.settings().toJson()) : null;
}
public static io.vertx.core.http.HttpConnection updateSettings(io.vertx.core.http.HttpConnection j_receiver, java.util.Map<String, Object> settings) {
内容来源于网络,如有侵权,请联系作者删除!