Class ActorAttributes
Materializer
.
Note that more attributes defined in Attributes
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
Enables additional low level troubleshooting logging at DEBUG log levelstatic class
static final class
Configures the dispatcher to be used by streams.static class
static final class
Test utility: fuzzing mode means that GraphStage events are not processed in FIFO order within a fused subgraph, but randomized.static class
static final class
Configure the maximum buffer size for which a FixedSizeBuffer will be preallocated.static class
static final class
Maximum number of elements emitted in batch if downstream signals large demand.static class
static final class
Defines a timeout for stream subscription and what action to take when that hits.static class
static final class
static class
static final class
Limit for number of messages that can be processed synchronously in stream to substream communication.static class
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Attributes
createLogLevels
(Logging.LogLevel onElement) Java APIstatic Attributes
createLogLevels
(Logging.LogLevel onElement, Logging.LogLevel onFinish, Logging.LogLevel onFailure) Java APIstatic Attributes
debugLogging
(boolean enabled) Enables additional low level troubleshooting logging at DEBUG log levelstatic Attributes
dispatcher
(String dispatcher) Specifies the name of the dispatcher.static Attributes
fuzzingMode
(boolean enabled) Test utility: fuzzing mode means that GraphStage events are not processed in FIFO order within a fused subgraph, but randomized.static ActorAttributes.Dispatcher
static Attributes
logLevels
(Logging.LogLevel onElement, Logging.LogLevel onFinish, Logging.LogLevel onFailure) Configureslog()
operator log-levels to be used when logging.static Logging.LogLevel
static Logging.LogLevel
static Logging.LogLevel
static Attributes
maxFixedBufferSize
(int size) Configure the maximum buffer size for which a FixedSizeBuffer will be preallocated.static Attributes
outputBurstLimit
(int limit) Maximum number of elements emitted in batch if downstream signals large demand.static Attributes
Java API: Defines a timeout for stream subscription and what action to take when that hits.static Attributes
streamSubscriptionTimeout
(scala.concurrent.duration.FiniteDuration timeout, StreamSubscriptionTimeoutTerminationMode mode) Scala API: Defines a timeout for stream subscription and what action to take when that hits.static Attributes
supervisionStrategy
(scala.Function1<Throwable, Supervision.Directive> decider) Scala API: Decides how exceptions from user are to be handled.static Attributes
syncProcessingLimit
(int limit) Limit for number of messages that can be processed synchronously in stream to substream communicationstatic Attributes
Java API: Decides how exceptions from application code are to be handled.
-
Constructor Details
-
ActorAttributes
public ActorAttributes()
-
-
Method Details
-
IODispatcher
-
dispatcher
Specifies the name of the dispatcher. This also adds an async boundary. -
supervisionStrategy
public static Attributes supervisionStrategy(scala.Function1<Throwable, Supervision.Directive> decider) 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.
For the Java API see
withSupervisionStrategy(org.apache.pekko.japi.function.Function<java.lang.Throwable, org.apache.pekko.stream.Supervision.Directive>)
-
withSupervisionStrategy
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.
For the Scala API see
supervisionStrategy(scala.Function1<java.lang.Throwable, org.apache.pekko.stream.Supervision.Directive>)
-
createLogLevels
public static Attributes createLogLevels(Logging.LogLevel onElement, Logging.LogLevel onFinish, Logging.LogLevel onFailure) Java APIConfigures
log()
operator log-levels to be used when logging. Logging a certain operation can be completely disabled by usingAttributes.logLevelOff()
. -
createLogLevels
Java APIConfigures
log()
operator log-levels to be used when logging onElement. Logging a certain operation can be completely disabled by usingAttributes.logLevelOff()
. -
logLevels
public static Attributes logLevels(Logging.LogLevel onElement, Logging.LogLevel onFinish, Logging.LogLevel onFailure) Configureslog()
operator log-levels to be used when logging. Logging a certain operation can be completely disabled by usingLogLevels.Off
.See
Attributes.createLogLevels
for Java API -
logLevels$default$1
-
logLevels$default$2
-
logLevels$default$3
-
debugLogging
Enables additional low level troubleshooting logging at DEBUG log level -
streamSubscriptionTimeout
public static Attributes streamSubscriptionTimeout(scala.concurrent.duration.FiniteDuration timeout, StreamSubscriptionTimeoutTerminationMode mode) Scala API: Defines a timeout for stream subscription and what action to take when that hits. -
streamSubscriptionTimeout
public static Attributes streamSubscriptionTimeout(Duration timeout, StreamSubscriptionTimeoutTerminationMode mode) Java API: Defines a timeout for stream subscription and what action to take when that hits. -
outputBurstLimit
Maximum number of elements emitted in batch if downstream signals large demand. -
fuzzingMode
Test utility: fuzzing mode means that GraphStage events are not processed in FIFO order within a fused subgraph, but randomized. -
maxFixedBufferSize
Configure the maximum buffer size for which a FixedSizeBuffer will be preallocated. This defaults to a large value because it is usually better to fail early when system memory is not sufficient to hold the buffer. -
syncProcessingLimit
Limit for number of messages that can be processed synchronously in stream to substream communication
-