Package akka.actor.typed
Class RecipientRef.RecipientRefOps<T>
- java.lang.Object
-
- scala.AnyVal
-
- akka.actor.typed.RecipientRef.RecipientRefOps<T>
-
- Enclosing interface:
- RecipientRef<T>
public static final class RecipientRef.RecipientRefOps<T> extends scala.AnyVal
-
-
Constructor Summary
Constructors Constructor Description RecipientRefOps(RecipientRef<T> ref)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
$bang(T msg)
Send a message to the destination referenced by thisRecipientRef
using *at-most-once* messaging semantics.boolean
equals(java.lang.Object x$1)
int
hashCode()
RecipientRef<T>
ref()
-
-
-
Constructor Detail
-
RecipientRefOps
public RecipientRefOps(RecipientRef<T> ref)
-
-
Method Detail
-
ref
public RecipientRef<T> ref()
-
$bang
public void $bang(T msg)
Send a message to the destination referenced by thisRecipientRef
using *at-most-once* messaging semantics.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Overrides:
equals
in classjava.lang.Object
-
-