c

akka.stream.impl

ExtendedActorMaterializer

abstract class ExtendedActorMaterializer extends ActorMaterializer

ExtendedActorMaterializer used by subtypes which materializer using GraphInterpreterShell

Source
ActorMaterializerImpl.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtendedActorMaterializer
  2. ActorMaterializer
  3. MaterializerLoggingProvider
  4. Materializer
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExtendedActorMaterializer()

Abstract Value Members

  1. abstract def effectiveSettings(opAttr: Attributes): ActorMaterializerSettings
    Definition Classes
    ActorMaterializer
  2. implicit abstract def executionContext: ExecutionContextExecutor

    Running a flow graph will require execution resources, as will computations within Sources, Sinks, etc.

    Running a flow graph will require execution resources, as will computations within Sources, Sinks, etc. This scala.concurrent.ExecutionContextExecutor can be used by parts of the flow to submit processing jobs for execution, run Future callbacks, etc.

    Definition Classes
    Materializer
  3. abstract def isShutdown: Boolean

    Indicates if the materializer has been shut down.

    Indicates if the materializer has been shut down.

    Definition Classes
    ActorMaterializer
  4. abstract def logger: LoggingAdapter

    INTERNAL API

    INTERNAL API

    Definition Classes
    ExtendedActorMaterializerActorMaterializer
  5. abstract def makeLogger(logSource: Class[_]): LoggingAdapter
    Definition Classes
    MaterializerLoggingProvider
  6. abstract def materialize[Mat](_runnableGraph: Graph[ClosedShape, Mat], subflowFuser: (GraphInterpreterShell) ⇒ ActorRef, initialAttributes: Attributes): Mat

    INTERNAL API

  7. abstract def materialize[Mat](_runnableGraph: Graph[ClosedShape, Mat], subflowFuser: (GraphInterpreterShell) ⇒ ActorRef): Mat

    INTERNAL API

  8. abstract def materialize[Mat](runnable: Graph[ClosedShape, Mat], initialAttributes: Attributes): Mat

    This method interprets the given Flow description and creates the running stream using an explicitly provided Attributes as top level attributes.

    This method interprets the given Flow description and creates the running stream using an explicitly provided Attributes as top level attributes. The result can be highly implementation specific, ranging from local actor chains to remote-deployed processing networks.

    Definition Classes
    Materializer
  9. abstract def materialize[Mat](runnable: Graph[ClosedShape, Mat]): Mat

    This method interprets the given Flow description and creates the running stream.

    This method interprets the given Flow description and creates the running stream. The result can be highly implementation specific, ranging from local actor chains to remote-deployed processing networks.

    Definition Classes
    Materializer
  10. abstract def scheduleOnce(delay: FiniteDuration, task: Runnable): Cancellable

    Interface for stages that need timer services for their functionality.

    Interface for stages that need timer services for their functionality. Schedules a single task with the given delay.

    returns

    A akka.actor.Cancellable that allows cancelling the timer. Cancelling is best effort, if the event has been already enqueued it will not have an effect.

    Definition Classes
    Materializer
  11. abstract def schedulePeriodically(initialDelay: FiniteDuration, interval: FiniteDuration, task: Runnable): Cancellable

    Interface for stages that need timer services for their functionality.

    Interface for stages that need timer services for their functionality. Schedules a repeated task with the given interval between invocations.

    returns

    A akka.actor.Cancellable that allows cancelling the timer. Cancelling is best effort, if the event has been already enqueued it will not have an effect.

    Definition Classes
    Materializer
  12. abstract def settings: ActorMaterializerSettings
    Definition Classes
    ActorMaterializer
  13. abstract def shutdown(): Unit

    Shuts down this materializer and all the stages that have been materialized through this materializer.

    Shuts down this materializer and all the stages that have been materialized through this materializer. After having shut down, this materializer cannot be used again. Any attempt to materialize stages after having shut down will result in an IllegalStateException being thrown at materialization time.

    Definition Classes
    ActorMaterializer
  14. abstract def supervisor: ActorRef

    INTERNAL API

    INTERNAL API

    Definition Classes
    ExtendedActorMaterializerActorMaterializer
  15. abstract def system: ActorSystem

    INTERNAL API

    INTERNAL API

    Definition Classes
    ActorMaterializer
  16. abstract def withNamePrefix(name: String): ExtendedActorMaterializer

    The namePrefix shall be used for deriving the names of processing entities that are created during materialization.

    The namePrefix shall be used for deriving the names of processing entities that are created during materialization. This is meant to aid logging and failure reporting both during materialization and while the stream is running.

    Definition Classes
    ExtendedActorMaterializerMaterializer

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to any2stringadd[ExtendedActorMaterializer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ExtendedActorMaterializer, B)
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to ArrowAssoc[ExtendedActorMaterializer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def actorOf(props: Props, name: String, dispatcher: String): ActorRef

    INTERNAL API

    INTERNAL API

    Attributes
    protected
  7. def actorOf(context: MaterializationContext, props: Props): ActorRef

    INTERNAL API

    INTERNAL API

    Definition Classes
    ExtendedActorMaterializerActorMaterializer
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (ExtendedActorMaterializer) ⇒ Boolean, msg: ⇒ Any): ExtendedActorMaterializer
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to Ensuring[ExtendedActorMaterializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ExtendedActorMaterializer) ⇒ Boolean): ExtendedActorMaterializer
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to Ensuring[ExtendedActorMaterializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): ExtendedActorMaterializer
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to Ensuring[ExtendedActorMaterializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ExtendedActorMaterializer
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to Ensuring[ExtendedActorMaterializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to StringFormat[ExtendedActorMaterializer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def [B](y: B): (ExtendedActorMaterializer, B)
    Implicit
    This member is added by an implicit conversion from ExtendedActorMaterializer to ArrowAssoc[ExtendedActorMaterializer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from ActorMaterializer

Inherited from Materializer

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ExtendedActorMaterializer to any2stringadd[ExtendedActorMaterializer]

Inherited by implicit conversion StringFormat from ExtendedActorMaterializer to StringFormat[ExtendedActorMaterializer]

Inherited by implicit conversion Ensuring from ExtendedActorMaterializer to Ensuring[ExtendedActorMaterializer]

Inherited by implicit conversion ArrowAssoc from ExtendedActorMaterializer to ArrowAssoc[ExtendedActorMaterializer]

Ungrouped