本文整理了Java中io.vertx.ext.web.client.HttpRequest.port()
方法的一些代码示例,展示了HttpRequest.port()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpRequest.port()
方法的具体详情如下:
包路径:io.vertx.ext.web.client.HttpRequest
类名称:HttpRequest
方法名:port
暂无
代码示例来源:origin: vert-x3/vertx-rx
/**
* Configure the request to use a new port <code>value</code>.
* @param value
* @return a reference to this, so the API can be used fluently
*/
public io.vertx.rxjava.ext.web.client.HttpRequest<T> port(int value) {
delegate.port(value);
return this;
}
代码示例来源:origin: io.vertx/vertx-rx-java
/**
* Configure the request to use a new port <code>value</code>.
* @param value
* @return a reference to this, so the API can be used fluently
*/
public io.vertx.rxjava.ext.web.client.HttpRequest<T> port(int value) {
delegate.port(value);
return this;
}
代码示例来源:origin: io.vertx/vertx-web-client
private void handleMutateRequest(HttpContext context) {
if (context.phase() == ClientPhase.PREPARE_REQUEST) {
context.request().host("localhost");
context.request().port(8080);
}
context.next();
}
代码示例来源:origin: io.vertx/vertx-web-client
@Test
public void testMutateRequestInterceptor() throws Exception {
server.requestHandler(req -> req.response().end());
startServer();
client.addInterceptor(this::handleMutateRequest);
HttpRequest<Buffer> builder = client.get("/somepath").host("another-host").port(8081);
builder.send(onSuccess(resp -> complete()));
await();
}
代码示例来源:origin: io.vertx/vertx-web-client
@Test
public void testCacheInterceptor() throws Exception {
server.requestHandler(req -> fail());
startServer();
client.addInterceptor(this::cacheInterceptorHandler);
HttpRequest<Buffer> builder = client.get("/somepath").host("localhost").port(8080);
builder.send(onSuccess(resp -> {
assertEquals(200, resp.statusCode());
complete();
}));
await();
}
代码示例来源:origin: io.vertx/vertx-web-client
HttpRequest<Buffer> builder = client.get("/1").host("localhost").port(8080);
builder.send(onSuccess(resp -> {
assertEquals(200, resp.statusCode());
代码示例来源:origin: io.vertx/vertx-web-client
ctx.next();
});
HttpRequest<Buffer> builder = client.get("/").host("localhost").port(8080);
builder.send(onSuccess(resp -> {
assertEquals(302, resp.statusCode());
内容来源于网络,如有侵权,请联系作者删除!