![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.RequestContext 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;
import com.arangodb.internal.RequestContextImpl;
import java.util.Optional;
/**
* Context holding information about the current request and response.
*/
public interface RequestContext {
RequestContext EMPTY = new RequestContextImpl();
/**
* @return the stream transaction id of the request (if any) or {@code null}
*/
Optional getStreamTransactionId();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy