![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.model.TransactionalOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
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