Packages

object Attributes extends Serializable

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

Source
Attributes.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Content Hierarchy
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 Attribute with Product with Serializable
  3. final case class LogLevels (onElement: LogLevel, onFinish: LogLevel, onFailure: LogLevel) extends Attribute with Product with Serializable
  4. 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, 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.

  4. def extractName(mod: Module, 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.

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

    Specifies the initial and maximum size of the input buffer.

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

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

  8. val none: Attributes
  9. object AsyncBoundary extends Attribute with Product with Serializable
  10. object LogLevels extends Serializable