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 Attribute with Product with Serializable
  2. final case class SupervisionStrategy (decider: Decider) extends Attribute with Product with Serializable

Value Members

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

    Java API

    Java API

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

    Passing in null as any of the arguments sets the level to its default value, which is: Debug for onElement and onFinish, and Error for onFailure.

  3. def dispatcher(dispatcher: String): Attributes

    Specifies the name of the dispatcher.

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

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

    Configures log() stage 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

  5. def supervisionStrategy(decider: Decider): Attributes

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

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

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