本文整理汇总了Java中com.github.nkzawa.engineio.client.Transport类的典型用法代码示例。如果您正苦于以下问题:Java Transport类的具体用法?Java Transport怎么用?Java Transport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Transport类属于com.github.nkzawa.engineio.client包,在下文中一共展示了Transport类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: uri
import com.github.nkzawa.engineio.client.Transport; //导入依赖的package包/类
protected String uri() {
Map<String, String> query = this.query;
if (query == null) {
query = new HashMap<String, String>();
}
String schema = this.secure ? "https" : "http";
String port = "";
if (this.timestampRequests) {
query.put(this.timestampParam, String.valueOf(new Date().getTime()) + "-" + Transport.timestamps++);
}
String _query = ParseQS.encode(query);
if (this.port > 0 && (("https".equals(schema) && this.port != 443)
|| ("http".equals(schema) && this.port != 80))) {
port = ":" + this.port;
}
if (_query.length() > 0) {
_query = "?" + _query;
}
return schema + "://" + this.hostname + port + this.path + _query;
}