final class ReceiveBuilder[T] extends AnyRef
- Alphabetic
- By Inheritance
- ReceiveBuilder
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Value Members
- def build(): Receive[T]
- def onAnyMessage(handler: Function[T, Behavior[T]]): ReceiveBuilder[T]
Add a new case to the message handling matching any message.
Add a new case to the message handling matching any message. Subsequent
onMessage
clauses will never see any messages.- handler
action to apply for any message
- returns
this behavior builder
- def onMessage[M <: T](type: Class[M], test: Predicate[M], handler: Function[M, Behavior[T]]): ReceiveBuilder[T]
Add a new predicated case to the message handling.
Add a new predicated case to the message handling.
- M
type of message to match
- type
type of message to match
- test
a predicate that will be evaluated on the argument if the type matches
- handler
action to apply if the type matches and the predicate returns true
- returns
this behavior builder
- def onMessage[M <: T](type: Class[M], handler: Function[M, Behavior[T]]): ReceiveBuilder[T]
Add a new case to the message handling.
Add a new case to the message handling.
- M
type of message to match
- type
type of message to match
- handler
action to apply if the type matches
- returns
this behavior builder
- def onMessageEquals(msg: T, handler: [Behavior[T]]): ReceiveBuilder[T]
Add a new case to the message handling matching equal messages.
Add a new case to the message handling matching equal messages.
- msg
the message to compare to
- handler
action to apply when the message matches
- returns
this behavior builder
- def onMessageUnchecked[M <: T](type: Class[_ <: T], handler: Function[M, Behavior[T]]): ReceiveBuilder[T]
Add a new case to the message handling without compile time type check.
Add a new case to the message handling without compile time type check.
Should normally not be used, but when matching on class with generic type argument it can be useful, e.g.
List.class
and(List<String> list) -> {...}
- type
type of message to match
- handler
action to apply when the type matches
- returns
this behavior builder
- def onSignal[M <: Signal](type: Class[M], test: Predicate[M], handler: Function[M, Behavior[T]]): ReceiveBuilder[T]
Add a new predicated case to the signal handling.
Add a new predicated case to the signal handling.
- M
type of signal to match
- type
type of signals to match
- test
a predicate that will be evaluated on the argument if the type matches
- handler
action to apply if the type matches and the predicate returns true
- returns
this behavior builder
- def onSignal[M <: Signal](type: Class[M], handler: Function[M, Behavior[T]]): ReceiveBuilder[T]
Add a new case to the signal handling.
Add a new case to the signal handling.
- M
type of signal to match
- type
type of signal to match
- handler
action to apply if the type matches
- returns
this behavior builder
- def onSignalEquals(signal: Signal, handler: [Behavior[T]]): ReceiveBuilder[T]
Add a new case to the signal handling matching equal signals.
Add a new case to the signal handling matching equal signals.
- signal
the signal to compare to
- handler
action to apply when the message matches
- returns
this behavior builder
Mutable builder used when implementing AbstractBehavior.
When handling a message or signal, this Behavior will consider all handlers in the order they were added, looking for the first handler for which both the type and the (optional) predicate match.
the common superclass of all supported messages.