Interface AtLeastOnceDeliveryLike

    • Method Detail

      • aroundReceive

        void aroundReceive​(scala.PartialFunction<java.lang.Object,​scala.runtime.BoxedUnit> receive,
                           java.lang.Object message)
        INTERNAL API
        Specified by:
        aroundReceive in interface Actor
        Specified by:
        aroundReceive in interface Eventsourced
        Parameters:
        receive - current behavior.
        message - current message.
      • cancelRedeliveryTask

        void cancelRedeliveryTask()
      • confirmDelivery

        boolean confirmDelivery​(long deliveryId)
        Call this method when a message has been confirmed by the destination, or to abort re-sending.
        Returns:
        true the first time the deliveryId is confirmed, i.e. false for duplicate confirm
        See Also:
        #deliver
      • deliverySequenceNr_$eq

        void deliverySequenceNr_$eq​(long x$1)
      • internalDeliver

        void internalDeliver​(ActorPath destination,
                             scala.Function1<java.lang.Object,​java.lang.Object> deliveryIdToMessage)
        INTERNAL API
      • internalDeliver

        void internalDeliver​(ActorSelection destination,
                             scala.Function1<java.lang.Object,​java.lang.Object> deliveryIdToMessage)
        INTERNAL API
      • maxUnconfirmedMessages

        int maxUnconfirmedMessages()
        Maximum number of unconfirmed messages that this actor is allowed to hold in memory. If this number is exceed #deliver will not accept more messages and it will throw AtLeastOnceDelivery.MaxUnconfirmedMessagesExceededException.

        The default value can be configured with the akka.persistence.at-least-once-delivery.max-unconfirmed-messages configuration key. This method can be overridden by implementation classes to return non-default values.

      • nextDeliverySequenceNr

        long nextDeliverySequenceNr()
      • numberOfUnconfirmed

        int numberOfUnconfirmed()
        Number of messages that have not been confirmed yet.
      • onReplaySuccess

        void onReplaySuccess()
        Description copied from interface: Eventsourced
        INTERNAL API. Called whenever a message replay succeeds. May be implemented by subclass.
        Specified by:
        onReplaySuccess in interface Eventsourced
      • redeliverInterval

        scala.concurrent.duration.FiniteDuration redeliverInterval()
        Interval between redelivery attempts.

        The default value can be configured with the akka.persistence.at-least-once-delivery.redeliver-interval configuration key. This method can be overridden by implementation classes to return non-default values.

      • redeliverOverdue

        void redeliverOverdue()
      • redeliverTask_$eq

        void redeliverTask_$eq​(scala.Option<Cancellable> x$1)
      • redeliveryBurstLimit

        int redeliveryBurstLimit()
        Maximum number of unconfirmed messages that will be sent at each redelivery burst (burst frequency is half of the redelivery interval). If there's a lot of unconfirmed messages (e.g. if the destination is not available for a long time), this helps to prevent an overwhelming amount of messages to be sent at once.

        The default value can be configured with the akka.persistence.at-least-once-delivery.redelivery-burst-limit configuration key. This method can be overridden by implementation classes to return non-default values.

      • send

        void send​(long deliveryId,
                  akka.persistence.AtLeastOnceDelivery.Internal.Delivery d,
                  long timestamp)
      • startRedeliverTask

        void startRedeliverTask()
      • super$aroundPreRestart

        void super$aroundPreRestart​(java.lang.Throwable reason,
                                    scala.Option<java.lang.Object> message)
        INTERNAL API
        Specified by:
        super$aroundPreRestart in interface Eventsourced
      • super$aroundReceive

        void super$aroundReceive​(scala.PartialFunction<java.lang.Object,​scala.runtime.BoxedUnit> receive,
                                 java.lang.Object message)
        INTERNAL API
        Specified by:
        super$aroundReceive in interface Eventsourced
      • super$onReplaySuccess

        void super$onReplaySuccess()
      • unconfirmed_$eq

        void unconfirmed_$eq​(scala.collection.immutable.SortedMap<java.lang.Object,​akka.persistence.AtLeastOnceDelivery.Internal.Delivery> x$1)
      • warnAfterNumberOfUnconfirmedAttempts

        int warnAfterNumberOfUnconfirmedAttempts()
        After this number of delivery attempts an AtLeastOnceDelivery.UnconfirmedWarning message will be sent to self. The count is reset after a restart.

        The default value can be configured with the akka.persistence.at-least-once-delivery.warn-after-number-of-unconfirmed-attempts configuration key. This method can be overridden by implementation classes to return non-default values.