Packages

object ActorMaterializerSettings

Source
ActorMaterializer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorMaterializerSettings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(config: Config): ActorMaterializerSettings

    Create ActorMaterializerSettings from a Config subsection (Scala).

  2. def apply(system: ActorSystem): ActorMaterializerSettings

    Create ActorMaterializerSettings from the settings of an akka.actor.ActorSystem (Scala).

  3. def create(config: Config): ActorMaterializerSettings

    Create ActorMaterializerSettings from a Config subsection (Java).

  4. def create(system: ActorSystem): ActorMaterializerSettings

    Create ActorMaterializerSettings from the settings of an akka.actor.ActorSystem (Java).

Deprecated Value Members

  1. def apply(initialInputBufferSize: Int, maxInputBufferSize: Int, dispatcher: String, supervisionDecider: Decider, subscriptionTimeoutSettings: StreamSubscriptionTimeoutSettings, debugLogging: Boolean, outputBurstLimit: Int, fuzzingMode: Boolean, autoFusing: Boolean, maxFixedBufferSize: Int): ActorMaterializerSettings

    Create ActorMaterializerSettings from individual settings (Scala).

    Create ActorMaterializerSettings from individual settings (Scala).

    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version 2.5.10) Create the settings using the apply(system) or apply(config) method, and then modify them using the .with methods.

  2. def create(initialInputBufferSize: Int, maxInputBufferSize: Int, dispatcher: String, supervisionDecider: Decider, subscriptionTimeoutSettings: StreamSubscriptionTimeoutSettings, debugLogging: Boolean, outputBurstLimit: Int, fuzzingMode: Boolean, autoFusing: Boolean, maxFixedBufferSize: Int): ActorMaterializerSettings

    Create ActorMaterializerSettings from individual settings (Java).

    Create ActorMaterializerSettings from individual settings (Java).

    Annotations
    @Deprecated @deprecated
    Deprecated

    (Since version 2.5.10) Create the settings using the create(system) or create(config) method, and then modify them using the .with methods.