Packages

o

akka.stream

ActorAttributes

object ActorAttributes

Attributes for the ActorMaterializer. Note that more attributes defined in Attributes.

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

Type Members

  1. final case class Dispatcher(dispatcher: String) extends MandatoryAttribute with Product with Serializable
  2. final case class SupervisionStrategy(decider: Decider) extends MandatoryAttribute with Product with Serializable

Value Members

  1. val IODispatcher: Dispatcher
  2. def createLogLevels(onElement: LogLevel): Attributes

    Java API

    Java API

    Configures log() operator log-levels to be used when logging onElement. Logging a certain operation can be completely disabled by using Attributes#logLevelOff.

  3. def createLogLevels(onElement: LogLevel, onFinish: LogLevel, onFailure: LogLevel): Attributes

    Java API

    Java API

    Configures log() operator log-levels to be used when logging. Logging a certain operation can be completely disabled by using Attributes#logLevelOff.

  4. def dispatcher(dispatcher: String): Attributes

    Specifies the name of the dispatcher.

    Specifies the name of the dispatcher. This also adds an async boundary.

  5. def logLevels(onElement: LogLevel = Logging.DebugLevel, onFinish: LogLevel = Logging.DebugLevel, onFailure: LogLevel = Logging.ErrorLevel): Attributes

    Configures log() operator log-levels to be used when logging.

    Configures log() operator log-levels to be used when logging. Logging a certain operation can be completely disabled by using LogLevels.Off.

    See Attributes.createLogLevels for Java API

  6. def supervisionStrategy(decider: Decider): Attributes

    Scala API: Decides how exceptions from user are to be handled.

    Scala API: Decides how exceptions from user are to be handled.

    Operators supporting supervision strategies explicitly document that they do so. If a operator does not document support for these, it should be assumed it does not support supervision.

  7. def withSupervisionStrategy(decider: Function[Throwable, Directive]): Attributes

    Java API: Decides how exceptions from application code are to be handled.

    Java API: Decides how exceptions from application code are to be handled.

    Operators supporting supervision strategies explicitly document that they do so. If a operator does not document support for these, it should be assumed it does not support supervision.

  8. object Dispatcher extends Serializable