Enum Class CommitStrategy

java.lang.Object
java.lang.Enum<CommitStrategy>
com.oracle.coherence.spring.annotation.CommitStrategy
All Implemented Interfaces:
Serializable, Comparable<CommitStrategy>, Constable

public enum CommitStrategy extends Enum<CommitStrategy>

An enum representing different strategies for committing positions in a Coherence topic when using CoherenceTopicListener.

To track messages that have been consumed, Coherence allows committing positions at a frequency desired by the developer.

Depending on requirements you may wish the commit more or less frequently and you may not care whether the commit was successful or not. This enum allows configuring a range of policies for a Coherence topic subscriber from leaving it down to the client to synchronously commit (with SYNC) or asynchronously commit (with ASYNC) after each message is consumed, through to manually handling commits (with MANUAL).

Since:
3.0
Author:
Jonathan Knight
  • Enum Constant Details

    • MANUAL

      public static final CommitStrategy MANUAL
      Do not commit messages. In this case the subscriber method should accept an argument that is the Subscriber.Element itself and call Subscriber.Element.commit() or Subscriber.Element.commitAsync() to commit the received element.
    • SYNC

      public static final CommitStrategy SYNC
      Synchronously commit using Subscriber.Element.commit() after each messages is processed.
    • ASYNC

      public static final CommitStrategy ASYNC
      Asynchronously commit using Subscriber.Element.commitAsync() after each messages is processed.
  • Method Details

    • values

      public static CommitStrategy[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CommitStrategy valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null