object Deregister
Ordering
- Alphabetic
- By Inheritance
Inherited
- Deregister
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply[T](key: ServiceKey[T], service: ActorRef[T], replyTo: [Deregistered]): Command
Create a Deregister with an actor that will get an ack that the service was unregistered
- def apply[T](key: ServiceKey[T], service: ActorRef[T]): Command
Create a Deregister without Ack that the service was deregistered
Remove association between the given akka.actor.typed.ActorRef and the given ServiceKey.
Deregistration can be acknowledged with the Deregistered message if the deregister message is created with a
replyTo
actor.Note that getting the Deregistered confirmation does not mean all service key subscribers has seen the fact that the actor has been deregistered yet (especially in a clustered context) so it will be possible that messages sent to the actor in the role of service provider arrive even after getting the confirmation.