Class PhasedFusingActorMaterializer

    • Method Detail

      • Debug

        public static boolean Debug()
      • DefaultPhase

        public static Phase<java.lang.Object> DefaultPhase()
      • DefaultPhases

        public static scala.collection.immutable.Map<IslandTag,​Phase<java.lang.Object>> DefaultPhases()
      • haveShutDown

        public java.util.concurrent.atomic.AtomicBoolean haveShutDown()
      • shutdown

        public void shutdown()
        Description copied from class: ActorMaterializer
        Shuts down this materializer and all the operators that have been materialized through this materializer. After having shut down, this materializer cannot be used again. Any attempt to materialize operators after having shut down will result in an IllegalStateException being thrown at materialization time.
        Specified by:
        shutdown in class ActorMaterializer
      • isShutdown

        public boolean isShutdown()
        Description copied from class: ActorMaterializer
        Indicates if the materializer has been shut down.
        Specified by:
        isShutdown in class ActorMaterializer
        Returns:
        (undocumented)
      • defaultAttributes

        public Attributes defaultAttributes()
        Default attributes for the materializer, based on the ActorMaterializerSettings and are always seen as least specific, so any attribute specified in the graph "wins" over these. In addition to that this also guarantees that the attributes InputBuffer, SupervisionStrategy, and Dispatcher is _always_ present in the attributes and can be accessed through Attributes.mandatoryAttribute

        When these attributes are needed later in the materialization process it is important that the they are gotten through the attributes and not through the ActorMaterializerSettings

        Returns:
        (undocumented)
      • executionContext

        public scala.concurrent.ExecutionContextExecutor executionContext()
        Description copied from class: Materializer
        Running a flow graph will require execution resources, as will computations within Sources, Sinks, etc. This ExecutionContextExecutor can be used by parts of the flow to submit processing jobs for execution, run Future callbacks, etc.

        Note that this is not necessarily the same execution context the stream operator itself is running on.

        Specified by:
        executionContext in class Materializer
        Returns:
        (undocumented)
      • schedulePeriodically

        public Cancellable schedulePeriodically​(scala.concurrent.duration.FiniteDuration initialDelay,
                                                scala.concurrent.duration.FiniteDuration interval,
                                                java.lang.Runnable task)
        Description copied from class: Materializer
        Interface for operators that need timer services for their functionality. Schedules a repeated task with the given interval between invocations.

        Specified by:
        schedulePeriodically in class Materializer
        Parameters:
        initialDelay - (undocumented)
        interval - (undocumented)
        task - (undocumented)
        Returns:
        A Cancellable that allows cancelling the timer. Cancelling is best effort, if the event has been already enqueued it will not have an effect.
      • scheduleOnce

        public Cancellable scheduleOnce​(scala.concurrent.duration.FiniteDuration delay,
                                        java.lang.Runnable task)
        Description copied from class: Materializer
        Interface for operators that need timer services for their functionality. Schedules a single task with the given delay.

        Specified by:
        scheduleOnce in class Materializer
        Parameters:
        delay - (undocumented)
        task - (undocumented)
        Returns:
        A Cancellable that allows cancelling the timer. Cancelling is best effort, if the event has been already enqueued it will not have an effect.
      • copy$default$4

        public ActorRef copy$default$4()
      • copy$default$5

        public java.util.concurrent.atomic.AtomicBoolean copy$default$5()
      • productPrefix

        public java.lang.String productPrefix()
        Specified by:
        productPrefix in interface scala.Product
      • productArity

        public int productArity()
        Specified by:
        productArity in interface scala.Product
      • productElement

        public java.lang.Object productElement​(int x$1)
        Specified by:
        productElement in interface scala.Product
      • productIterator

        public scala.collection.Iterator<java.lang.Object> productIterator()
        Specified by:
        productIterator in interface scala.Product
      • canEqual

        public boolean canEqual​(java.lang.Object x$1)
        Specified by:
        canEqual in interface scala.Equals
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object x$1)
        Specified by:
        equals in interface scala.Equals
        Overrides:
        equals in class java.lang.Object