object Attributes extends Serializable
Note that more attributes for the ActorMaterializer are defined in ActorAttributes.
- Source
- Attributes.scala
- Alphabetic
- By Inheritance
- Attributes
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- trait Attribute extends AnyRef
- final case class InputBuffer(initial: Int, max: Int) extends MandatoryAttribute with Product with Serializable
- final case class LogLevels(onElement: LogLevel, onFinish: LogLevel, onFailure: LogLevel) extends Attribute with Product with Serializable
- sealed trait MandatoryAttribute extends Attribute
- final case class Name(n: String) extends Attribute with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(attribute: Attribute): Attributes
INTERNAL API
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val asyncBoundary: Attributes
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
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. -
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. -
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
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.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
inputBuffer(initial: Int, max: Int): Attributes
Specifies the initial and maximum size of the input buffer.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
logLevelDebug: LogLevel
Use to enable logging at DEBUG level for certain operations when configuring Attributes#createLogLevels
-
def
logLevelError: LogLevel
Use to enable logging at ERROR level for certain operations when configuring Attributes#createLogLevels
-
def
logLevelInfo: LogLevel
Use to enable logging at INFO level for certain operations when configuring Attributes#createLogLevels
-
def
logLevelOff: LogLevel
Java API: Use to disable logging on certain operations when configuring Attributes#createLogLevels
-
def
logLevelWarning: LogLevel
Use to enable logging at WARNING level for certain operations when configuring Attributes#createLogLevels
-
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
-
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)))
. -
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val none: Attributes
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object AsyncBoundary extends Attribute with Product with Serializable
- object LogLevels extends Serializable