Uses of Interface
org.apache.tinkerpop.gremlin.driver.RequestInterceptor
-
-
Uses of RequestInterceptor in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver with parameters of type RequestInterceptor Modifier and Type Method Description Cluster.BuilderCluster.Builder. addInterceptor(String name, RequestInterceptor interceptor)Adds aRequestInterceptorto the end of the list that will allow manipulation of theHttpRequestprior to its being sent to the server.Cluster.BuilderCluster.Builder. addInterceptorAfter(String priorInterceptorName, String nameOfInterceptor, RequestInterceptor interceptor)Adds aRequestInterceptorafter another one that will allow manipulation of theHttpRequestprior to its being sent to the server.Cluster.BuilderCluster.Builder. addInterceptorBefore(String subsequentInterceptorName, String nameOfInterceptor, RequestInterceptor interceptor)Adds aRequestInterceptorbefore another one that will allow manipulation of theHttpRequestprior to its being sent to the server.static Cluster.BuilderCluster. build(RequestInterceptor serializingInterceptor) -
Uses of RequestInterceptor in org.apache.tinkerpop.gremlin.driver.auth
Subinterfaces of RequestInterceptor in org.apache.tinkerpop.gremlin.driver.auth Modifier and Type Interface Description interfaceAuthClasses in org.apache.tinkerpop.gremlin.driver.auth that implement RequestInterceptor Modifier and Type Class Description classBasicclassSigv4ARequestInterceptorthat provides headers required for SigV4. -
Uses of RequestInterceptor in org.apache.tinkerpop.gremlin.driver.handler
Constructor parameters in org.apache.tinkerpop.gremlin.driver.handler with type arguments of type RequestInterceptor Constructor Description HttpGremlinRequestEncoder(MessageSerializer<?> serializer, List<org.apache.commons.lang3.tuple.Pair<String,? extends RequestInterceptor>> interceptors, boolean userAgentEnabled, boolean bulkResults, URI uri) -
Uses of RequestInterceptor in org.apache.tinkerpop.gremlin.driver.interceptor
Classes in org.apache.tinkerpop.gremlin.driver.interceptor that implement RequestInterceptor Modifier and Type Class Description classPayloadSerializingInterceptorARequestInterceptorthat serializes the request body usng the providedMessageSerializer.
-