io.vertx.core.http.HttpConnection.settings()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中io.vertx.core.http.HttpConnection.settings()方法的一些代码示例,展示了HttpConnection.settings()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpConnection.settings()方法的具体详情如下:
包路径:io.vertx.core.http.HttpConnection
类名称:HttpConnection
方法名:settings

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) {

相关文章