All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.java.transactions.Transactions Maven / Gradle / Ivy

There is a newer version: 3.7.6
Show newest version
/*
 * Copyright 2022 Couchbase, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.couchbase.client.java.transactions;

import com.couchbase.client.core.Core;
import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.error.transaction.internal.CoreTransactionFailedException;
import com.couchbase.client.core.transaction.CoreTransactionResult;
import com.couchbase.client.java.codec.JsonSerializer;
import com.couchbase.client.java.transactions.config.TransactionOptions;
import com.couchbase.client.java.transactions.error.TransactionFailedException;
import reactor.util.annotation.Nullable;

import java.util.function.Consumer;

/**
 * The starting point for accessing Couchbase transactions.
 * 

* The main methods to run transactions are {@link Transactions#run} and {@link Transactions#reactive}. */ public class Transactions { private final ReactiveTransactions reactive; @Stability.Internal public Transactions(Core core, JsonSerializer serializer) { this.reactive = new ReactiveTransactions(core, serializer); } /** * Runs supplied transactional logic until success or failure. *

* The supplied transactional logic will be run if necessary multiple times, until either: *

    *
  • The transaction successfully commits
  • *
  • The transactional logic requests an explicit rollback
  • *
  • The transaction timesout.
  • *
  • An exception is thrown, either inside the transaction library or by the supplied transaction logic, that * cannot be handled.
  • *
*

* The transaction logic {@link Consumer} is provided a {@link TransactionAttemptContext}, which contains methods allowing it * to perform all operations that are possible inside a transaction. *

* Commit will be performed automatically if the lambda successfully reaches its end. * * @param transactionLogic the application's transaction logic * @param options the configuration to use for this transaction * @return there is no need to check the returned {@link TransactionResult}, as success is implied by the lack of a * thrown exception. It contains information useful only for debugging and logging. * @throws TransactionFailedException or a derived exception if the transaction fails to commit for any reason, possibly * after multiple retries. The exception contains further details of the error */ public TransactionResult run(Consumer transactionLogic, @Nullable TransactionOptions options) { return reactive.runBlocking(transactionLogic, options == null ? null : options.build()); } /** * Runs supplied transactional logic until success or failure. * * A convenience overload for {@link Transactions#run} that provides a default TransactionOptions */ public TransactionResult run(Consumer transactionLogic) { return run(transactionLogic, null); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy