class LoggingReceive extends Receive

This decorator adds invocation logging to a Receive function.

Source
LoggingReceive.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LoggingReceive
  2. PartialFunction
  3. Function1
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LoggingReceive(source: Option[AnyRef], r: Receive)(implicit context: ActorContext)
  2. new LoggingReceive(source: Option[AnyRef], r: Receive, label: Option[String])(implicit context: ActorContext)
  3. new LoggingReceive(source: Option[AnyRef], r: Receive, label: Option[String], logLevel: LogLevel)(implicit context: ActorContext)

    source

    the log source, if not defined the actor of the context will be used

Value Members

  1. def andThen[C](k: (Unit) ⇒ C): PartialFunction[Any, C]
    Definition Classes
    PartialFunction → Function1
  2. def apply(o: Any): Unit
    Definition Classes
    LoggingReceive → Function1
  3. def applyOrElse[A1 <: Any, B1 >: Unit](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  4. def compose[A](g: (A) ⇒ Any): (A) ⇒ Unit
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. def isDefinedAt(o: Any): Boolean
    Definition Classes
    LoggingReceive → PartialFunction
  6. def lift: (Any) ⇒ Option[Unit]
    Definition Classes
    PartialFunction
  7. def orElse[A1 <: Any, B1 >: Unit](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  8. def runWith[U](action: (Unit) ⇒ U): (Any) ⇒ Boolean
    Definition Classes
    PartialFunction
  9. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any