| Package | Description |
|---|---|
| com.linecorp.armeria.client |
Client core.
|
| Modifier and Type | Method and Description |
|---|---|
WebClient |
WebClientBuilder.build()
Returns a newly-created web client based on the properties of this builder.
|
static WebClient |
WebClient.of()
Creates a new web client without a base URI using the default
ClientFactory and
the default ClientOptions. |
static WebClient |
WebClient.of(ClientFactory factory,
SessionProtocol protocol,
Endpoint endpoint,
ClientOptions options)
Creates a new web client that connects to the specified
Endpoint with
the SessionProtocol using an alternative ClientFactory. |
static WebClient |
WebClient.of(ClientFactory factory,
SessionProtocol protocol,
Endpoint endpoint,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
Endpoint with
the SessionProtocol using an alternative ClientFactory. |
static WebClient |
WebClient.of(ClientFactory factory,
String uri,
ClientOptions options)
Creates a new web client that connects to the specified
uri using an alternative
ClientFactory. |
static WebClient |
WebClient.of(ClientFactory factory,
String uri,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
uri using an alternative
ClientFactory. |
static WebClient |
WebClient.of(ClientFactory factory,
URI uri,
ClientOptions options)
Creates a new web client that connects to the specified
URI using an alternative
ClientFactory. |
static WebClient |
WebClient.of(ClientFactory factory,
URI uri,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
URI using an alternative
ClientFactory. |
static WebClient |
WebClient.of(SessionProtocol protocol,
Endpoint endpoint,
ClientOptions options)
Creates a new web client that connects to the specified
Endpoint with
the SessionProtocol using the default ClientFactory. |
static WebClient |
WebClient.of(SessionProtocol protocol,
Endpoint endpoint,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
Endpoint with
the SessionProtocol using the default ClientFactory. |
static WebClient |
WebClient.of(String uri,
ClientOptions options)
Creates a new web client that connects to the specified
uri using the default
ClientFactory. |
static WebClient |
WebClient.of(String uri,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
uri using the default
ClientFactory. |
static WebClient |
WebClient.of(URI uri,
ClientOptions options)
Creates a new web client that connects to the specified
URI using the default
ClientFactory. |
static WebClient |
WebClient.of(URI uri,
ClientOptionValue<?>... options)
Creates a new web client that connects to the specified
URI using the default
ClientFactory. |
Copyright © 2020 LeanCloud. All rights reserved.