Uses of Interface
io.helidon.dbclient.DbInterceptorContext
-
Packages that use DbInterceptorContext Package Description io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.common Helper classes to use in various implementations.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB.io.helidon.dbclient.tracing Tracing support for Helidon DB. -
-
Uses of DbInterceptorContext in io.helidon.dbclient
Methods in io.helidon.dbclient that return DbInterceptorContext Modifier and Type Method Description DbInterceptorContextDbInterceptorContext. context(Context context)Set a new context to be used by other interceptors and when executing the statement.static DbInterceptorContextDbInterceptorContext. create(String dbType)Create a new interceptor context for a database provider.DbInterceptorContextDbInterceptorContext. parameters(List<Object> indexedParameters)Set new indexed parameters to be used.DbInterceptorContextDbInterceptorContext. parameters(Map<String,Object> namedParameters)Set new named parameters to be used.DbInterceptorContextDbInterceptorContext. resultFuture(CompletionStage<Long> queryFuture)Set a new future to mark completion of the result (e.g.DbInterceptorContextDbInterceptorContext. statement(String statement, List<Object> indexedParams)Set a new statement with indexed parameters to be used.DbInterceptorContextDbInterceptorContext. statement(String statement, Map<String,Object> namedParams)Set a new statement with named parameters to be used.DbInterceptorContextDbInterceptorContext. statementFuture(CompletionStage<Void> statementFuture)Set a new future to mark completion of the statement.DbInterceptorContextDbInterceptorContext. statementName(String newName)Set a new statement name to be used.DbInterceptorContextDbInterceptorContext. statementType(DbStatementType type)Set the type of the statement.Methods in io.helidon.dbclient that return types with arguments of type DbInterceptorContext Modifier and Type Method Description CompletionStage<DbInterceptorContext>DbInterceptor. statement(DbInterceptorContext context)Statement execution to be intercepted.Methods in io.helidon.dbclient with parameters of type DbInterceptorContext Modifier and Type Method Description CompletionStage<DbInterceptorContext>DbInterceptor. statement(DbInterceptorContext context)Statement execution to be intercepted. -
Uses of DbInterceptorContext in io.helidon.dbclient.common
Methods in io.helidon.dbclient.common with parameters of type DbInterceptorContext Modifier and Type Method Description protected voidAbstractStatement. update(DbInterceptorContext dbContext)Update the interceptor context with the statement name, statement and statement parameters.Method parameters in io.helidon.dbclient.common with type arguments of type DbInterceptorContext Modifier and Type Method Description protected abstract CompletionStage<R>AbstractStatement. doExecute(CompletionStage<DbInterceptorContext> dbContext, CompletableFuture<Void> statementFuture, CompletableFuture<Long> queryFuture)Execute the statement against the database. -
Uses of DbInterceptorContext in io.helidon.dbclient.mongodb
Method parameters in io.helidon.dbclient.mongodb with type arguments of type DbInterceptorContext Modifier and Type Method Description protected CompletionStage<Long>MongoDbStatementDml. doExecute(CompletionStage<DbInterceptorContext> dbContextFuture, CompletableFuture<Void> statementFuture, CompletableFuture<Long> queryFuture)protected CompletionStage<DbResult>MongoDbStatementGeneric. doExecute(CompletionStage<DbInterceptorContext> dbContextFuture, CompletableFuture<Void> statementFuture, CompletableFuture<Long> queryFuture) -
Uses of DbInterceptorContext in io.helidon.dbclient.tracing
Methods in io.helidon.dbclient.tracing that return types with arguments of type DbInterceptorContext Modifier and Type Method Description CompletableFuture<DbInterceptorContext>DbClientTracing. statement(DbInterceptorContext interceptorContext)Methods in io.helidon.dbclient.tracing with parameters of type DbInterceptorContext Modifier and Type Method Description CompletableFuture<DbInterceptorContext>DbClientTracing. statement(DbInterceptorContext interceptorContext)
-