Packages

object Attributes extends Serializable

Note that more attributes for the ActorMaterializer are defined in ActorAttributes.

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

Type Members

  1. trait Attribute extends AnyRef
  2. final case class InputBuffer(initial: Int, max: Int) extends MandatoryAttribute with Product with Serializable
  3. final case class LogLevels(onElement: LogLevel, onFinish: LogLevel, onFailure: LogLevel) extends Attribute with Product with Serializable
  4. sealed trait MandatoryAttribute extends Attribute
  5. final case class Name(n: String) extends Attribute with Product with Serializable

Value Members

  1. def apply(attribute: Attribute): Attributes

    INTERNAL API

  2. val asyncBoundary: Attributes
  3. 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.

  4. 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.

  5. def extractName(builder: TraversalBuilder, default: String): String

    Compute a name by concatenating all Name attributes that the given module has, returning the given default value if none are found.

  6. def inputBuffer(initial: Int, max: Int): Attributes

    Specifies the initial and maximum size of the input buffer.

  7. def logLevelDebug: LogLevel

    Use to enable logging at DEBUG level for certain operations when configuring Attributes#createLogLevels

  8. def logLevelError: LogLevel

    Use to enable logging at ERROR level for certain operations when configuring Attributes#createLogLevels

  9. def logLevelInfo: LogLevel

    Use to enable logging at INFO level for certain operations when configuring Attributes#createLogLevels

  10. def logLevelOff: LogLevel

    Java API: Use to disable logging on certain operations when configuring Attributes#createLogLevels

  11. def logLevelWarning: LogLevel

    Use to enable logging at WARNING level for certain operations when configuring Attributes#createLogLevels

  12. 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

  13. def name(name: String): Attributes

    Specifies the name of the operation.

    Specifies the name of the operation. If the name is null or empty the name is ignored, i.e. #none is returned.

    When using this method the name is encoded with URLEncoder with UTF-8 because the name is sometimes used as part of actor name. If that is not desired the name can be added in it's raw format using .addAttributes(Attributes(Name(name))).

  14. val none: Attributes
  15. object AsyncBoundary extends Attribute with Product with Serializable
  16. object LogLevels extends Serializable