Packages

p

akka.actor.typed

receptionist

package receptionist

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract class Receptionist extends Extension

    Register and discover actors that implement a service with a protocol defined by a ServiceKey.

    Register and discover actors that implement a service with a protocol defined by a ServiceKey.

    This class is not intended for user extension other than for test purposes (e.g. stub implementation). More methods may be added in the future and that may break such implementations.

    Annotations
    @DoNotInherit()
  2. final class ReceptionistSetup extends ExtensionSetup[Receptionist]

    Can be used in akka.actor.setup.ActorSystemSetup when starting the ActorSystem to replace the default implementation of the Receptionist extension.

    Can be used in akka.actor.setup.ActorSystemSetup when starting the ActorSystem to replace the default implementation of the Receptionist extension. Intended for tests that need to replace extension with stub/mock implementations.

  3. abstract class ServiceKey[T] extends AbstractServiceKey

    A service key is an object that implements this trait for a given protocol T, meaning that it signifies that the type T is the entry point into the protocol spoken by that service (think of it as the set of first messages that a client could send).

    A service key is an object that implements this trait for a given protocol T, meaning that it signifies that the type T is the entry point into the protocol spoken by that service (think of it as the set of first messages that a client could send).

    Not for user extension, see factories in companion object: ServiceKey#create and ServiceKey#apply

    Annotations
    @DoNotInherit()

Value Members

  1. object Receptionist extends ExtensionId[Receptionist]

    A Receptionist is an entry point into an Actor hierarchy where select Actors publish their identity together with the protocols that they implement.

    A Receptionist is an entry point into an Actor hierarchy where select Actors publish their identity together with the protocols that they implement. Other Actors need only know the Receptionist’s identity in order to be able to use the services of the registered Actors.

    These are the messages (and the extension) for interacting with the receptionist. The receptionist is easiest accessed through the system: ActorSystem.receptionist

  2. object ReceptionistSetup
  3. object ServiceKey

Ungrouped