Packages

object ReceivePipeline

Annotations
@deprecated
Deprecated

(Since version 2.5.0) Feel free to copy

Source
ReceivePipeline.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReceivePipeline
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Delegation extends AnyRef

    Result returned by an interceptor PF to determine what/whether to delegate to the next inner interceptor

  2. case class Inner(transformedMsg: Any) extends Delegation with Product with Serializable
  3. type Interceptor = PartialFunction[Any, Delegation]

Value Members

  1. object HandledCompletely extends Delegation with Product with Serializable

    Interceptor return value that indicates that the message has been handled completely.

    Interceptor return value that indicates that the message has been handled completely. The message will not be passed to inner interceptors (or to the decorated actor's receive).