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

com.arangodb.model.TransactionalOptions Maven / Gradle / Ivy

There is a newer version: 7.16.0
Show newest version
package com.arangodb.model;

import com.arangodb.arch.NoRawTypesInspection;

@NoRawTypesInspection
public abstract class TransactionalOptions> {

    abstract T getThis();

    private String streamTransactionId;

    public String getStreamTransactionId() {
        return streamTransactionId;
    }

    /**
     * @param streamTransactionId If set, the operation will be executed within the transaction.
     * @return options
     */
    public T streamTransactionId(final String streamTransactionId) {
        this.streamTransactionId = streamTransactionId;
        return getThis();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy