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.Builder
Cluster.Builder. addInterceptor(String name, RequestInterceptor interceptor)
Adds aRequestInterceptor
to the end of the list that will allow manipulation of theHttpRequest
prior to its being sent to the server.Cluster.Builder
Cluster.Builder. addInterceptorAfter(String priorInterceptorName, String nameOfInterceptor, RequestInterceptor interceptor)
Adds aRequestInterceptor
after another one that will allow manipulation of theHttpRequest
prior to its being sent to the server.Cluster.Builder
Cluster.Builder. addInterceptorBefore(String subsequentInterceptorName, String nameOfInterceptor, RequestInterceptor interceptor)
Adds aRequestInterceptor
before another one that will allow manipulation of theHttpRequest
prior to its being sent to the server.static Cluster.Builder
Cluster. 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 interface
Auth
Classes in org.apache.tinkerpop.gremlin.driver.auth that implement RequestInterceptor Modifier and Type Class Description class
Basic
class
Sigv4
ARequestInterceptor
that 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 class
PayloadSerializingInterceptor
ARequestInterceptor
that serializes the request body usng the providedMessageSerializer
.
-