GrpcClientSettings

akka.grpc.GrpcClientSettings$
See theGrpcClientSettings companion class

Attributes

Companion:
class
Source:
GrpcClientSettings.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

def connectToServiceAt(host: String, port: Int)(implicit actorSystem: ClassicActorSystemProvider): GrpcClientSettings

Create a client that uses a static host and port. Default configuration is loaded from reference.conf

Create a client that uses a static host and port. Default configuration is loaded from reference.conf

Attributes

Source:
GrpcClientSettings.scala
def fromConfig(clientName: String)(implicit actorSystem: ClassicActorSystemProvider): GrpcClientSettings

Look up client settings from an ActorSystem's configuration. Client configuration must be under akka.grpc.client. Each client configuration falls back to the defaults defined in reference.conf

Look up client settings from an ActorSystem's configuration. Client configuration must be under akka.grpc.client. Each client configuration falls back to the defaults defined in reference.conf

Attributes

clientName

of the client configuration to lookup config from the ActorSystem's config

Source:
GrpcClientSettings.scala
def fromConfig(clientConfiguration: Config)(implicit sys: ClassicActorSystemProvider): GrpcClientSettings

Configure client via the provided Config. See reference.conf for configuration properties.

Configure client via the provided Config. See reference.conf for configuration properties.

Attributes

Source:
GrpcClientSettings.scala
def usingServiceDiscovery(serviceName: String)(implicit actorSystem: ClassicActorSystemProvider): GrpcClientSettings

Configure the client to lookup a valid hostname:port from a service registry accessed via the ServiceDiscovery instance registered in the actorSystem provided. When invoking a lookup operation on the service registry, a name is required and optionally a port name and a protocol. This factory method only requires a serviceName. Use withServicePortName and withServiceProtocol to refine the lookup on the service registry.

Configure the client to lookup a valid hostname:port from a service registry accessed via the ServiceDiscovery instance registered in the actorSystem provided. When invoking a lookup operation on the service registry, a name is required and optionally a port name and a protocol. This factory method only requires a serviceName. Use withServicePortName and withServiceProtocol to refine the lookup on the service registry.

Attributes

serviceName

name of the remote service to lookup.

Source:
GrpcClientSettings.scala
def usingServiceDiscovery(serviceName: String, discovery: ServiceDiscovery)(implicit actorSystem: ClassicActorSystemProvider): GrpcClientSettings

Configure the client to lookup a valid hostname:port from a service registry accessed via the provided ServiceDiscovery. When invoking a lookup operation on the service registry, a name is required and optionally a port name and a protocol. This factory method only requires a serviceName. Use withServicePortName and withServiceProtocol to refine the lookup on the service registry.

Configure the client to lookup a valid hostname:port from a service registry accessed via the provided ServiceDiscovery. When invoking a lookup operation on the service registry, a name is required and optionally a port name and a protocol. This factory method only requires a serviceName. Use withServicePortName and withServiceProtocol to refine the lookup on the service registry.

Attributes

serviceName

name of the remote service to lookup.

Source:
GrpcClientSettings.scala