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

com.arangodb.RequestContext Maven / Gradle / Ivy

There is a newer version: 7.16.0
Show newest version
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