Attributes
- Companion:
- object
- Source:
- ArmeriaClientBuilder.scala
- Graph
- Supertypes
Members list
Type members
Types
Attributes
- Source:
- ArmeriaClientBuilder.scala
Value members
Concrete methods
Returns a newly-created http4s org.http4s.client.Client based on Armeria com.linecorp.armeria.client.WebClient.
Returns a newly-created http4s org.http4s.client.Client based on Armeria com.linecorp.armeria.client.WebClient.
Attributes
- Source:
- ArmeriaClientBuilder.scala
Returns the backend as a resource. Resource acquire waits until the backend is ready to process requests.
Returns the backend as a resource. Resource acquire waits until the backend is ready to process requests.
Attributes
- Definition Classes
- Source:
- ArmeriaClientBuilder.scala
Configures the Armeria client using the specified com.linecorp.armeria.client.WebClientBuilder.
Configures the Armeria client using the specified com.linecorp.armeria.client.WebClientBuilder.
Attributes
- Source:
- ArmeriaClientBuilder.scala
Sets the com.linecorp.armeria.client.ClientFactory used for creating a client. The default
is com.linecorp.armeria.client.ClientFactory.ofDefault().
Sets the com.linecorp.armeria.client.ClientFactory used for creating a client. The default
is com.linecorp.armeria.client.ClientFactory.ofDefault().
Attributes
- Source:
- ArmeriaClientBuilder.scala
Adds the specified com.linecorp.armeria.client.ClientOptionValue.
Adds the specified com.linecorp.armeria.client.ClientOptionValue.
Attributes
- Source:
- ArmeriaClientBuilder.scala
Adds the specified com.linecorp.armeria.client.ClientOptions.
Adds the specified com.linecorp.armeria.client.ClientOptions.
Attributes
- Source:
- ArmeriaClientBuilder.scala
Adds the specified com.linecorp.armeria.client.ClientOptionValues.
Adds the specified com.linecorp.armeria.client.ClientOptionValues.
Attributes
- Source:
- ArmeriaClientBuilder.scala
Adds the specified decorator.
Adds the specified decorator.
Attributes
- decorator
the DecoratingFunction that transforms an com.linecorp.armeria.client.HttpClient to another.
- Source:
- ArmeriaClientBuilder.scala
Adds the specified decorator.
Adds the specified decorator.
Attributes
- decorator
the
java.util.function.Functionthat transforms an com.linecorp.armeria.client.HttpClient to another.- Source:
- ArmeriaClientBuilder.scala
Sets the maximum allowed length of a server response in bytes.
Sets the maximum allowed length of a server response in bytes.
Attributes
- maxResponseLength
the maximum length in bytes.
0disables the limit.- Source:
- ArmeriaClientBuilder.scala
Sets the timeout of a response.
Sets the timeout of a response.
Attributes
- responseTimeout
the timeout.
scala.concurrent.duration.Duration.Zerodisables the timeout.- Source:
- ArmeriaClientBuilder.scala
Sets the timeout of a socket write attempt.
Sets the timeout of a socket write attempt.
Attributes
- writeTimeout
the timeout.
scala.concurrent.duration.Duration.Zerodisables the timeout.- Source:
- ArmeriaClientBuilder.scala
Inherited methods
Returns the backend as a single-element stream. The stream does not emit until the backend is ready to process requests. The backend is shut down when the stream is finalized.
Returns the backend as a single-element stream. The stream does not emit until the backend is ready to process requests. The backend is shut down when the stream is finalized.
Attributes
- Inherited from:
- BackendBuilder (hidden)
- Source:
- BackendBuilder.scala
Deprecated and Inherited methods
Returns an effect that allocates a backend and an F[Unit] to
release it. The returned F waits until the backend is ready
to process requests. The second element of the tuple shuts
down the backend when run.
Returns an effect that allocates a backend and an F[Unit] to
release it. The returned F waits until the backend is ready
to process requests. The second element of the tuple shuts
down the backend when run.
Unlike resource and stream, there is no automatic release of the backend. This function is intended for REPL sessions, tests, and other situations where composing a cats.effect.Resource or fs2.Stream is not tenable. resource or stream is recommended wherever possible.
Attributes
- Deprecated
- true
- Inherited from:
- BackendBuilder (hidden)
- Source:
- BackendBuilder.scala