Interface ClientSession

  • All Superinterfaces:
    java.lang.AutoCloseable, ClientSession, java.io.Closeable

    public interface ClientSession
    extends ClientSession
    A client session that supports transactions.
    Since:
    3.8
    • Method Detail

      • hasActiveTransaction

        boolean hasActiveTransaction()
        Returns true if there is an active transaction on this session, and false otherwise
        Returns:
        true if there is an active transaction on this session
      • notifyMessageSent

        boolean notifyMessageSent()
        Notify the client session that a message has been sent.

        For internal use only

        Returns:
        true if this is the first message sent, false otherwise
      • getTransactionOptions

        TransactionOptions getTransactionOptions()
        Gets the transaction options. Only call this method of the session has an active transaction
        Returns:
        the transaction options
      • startTransaction

        void startTransaction()
        Start a transaction in the context of this session with default transaction options. A transaction can not be started if there is already an active transaction on this session.
      • startTransaction

        void startTransaction​(TransactionOptions transactionOptions)
        Start a transaction in the context of this session with the given transaction options. A transaction can not be started if there is already an active transaction on this session.
        Parameters:
        transactionOptions - the options to apply to the transaction
      • commitTransaction

        void commitTransaction()
        Commit a transaction in the context of this session. A transaction can only be commmited if one has first been started.
      • abortTransaction

        void abortTransaction()
        Abort a transaction in the context of this session. A transaction can only be aborted if one has first been started.