Package akka.actor.typed.receptionist
Class Receptionist.Find$
- java.lang.Object
-
- akka.actor.typed.receptionist.Receptionist.Find$
-
- Enclosing class:
- Receptionist
public static class Receptionist.Find$ extends java.lang.Object
Find
message. Query the Receptionist for a list of all Actors implementing the given protocol at one point in time by sending this command to theReceptionist.ref
.
-
-
Field Summary
Fields Modifier and Type Field Description static Receptionist.Find$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description Find$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> scala.Function1<ActorRef<Receptionist.Listing>,Receptionist.Command>
apply(ServiceKey<T> key)
Special factory to make using Find with ask easier<T> Receptionist.Command
apply(ServiceKey<T> key, ActorRef<Receptionist.Listing> replyTo)
Scala API:
-
-
-
Field Detail
-
MODULE$
public static final Receptionist.Find$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
apply
public <T> Receptionist.Command apply(ServiceKey<T> key, ActorRef<Receptionist.Listing> replyTo)
Scala API:
-
apply
public <T> scala.Function1<ActorRef<Receptionist.Listing>,Receptionist.Command> apply(ServiceKey<T> key)
Special factory to make using Find with ask easier
-
-