forked from helidon-io/helidon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue helidon-io#6991 - Blocking DB Client: Interceptors API and init…
…ial implementation in JDBC Signed-off-by: Tomas Kraus <[email protected]>
- Loading branch information
1 parent
4a7f5f9
commit 407869a
Showing
25 changed files
with
1,105 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
dbclient/dbclient/src/main/java/io/helidon/dbclient/DbClientService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.helidon.dbclient; | ||
|
||
/** | ||
* Services can modify the data used to execute a statement as well as | ||
* react on a statement result. | ||
* <p> | ||
* Example of such services: tracing, metrics. | ||
* <p> | ||
* Order of execution of services is based on the order they are registered in a builder, or by their priority when | ||
* loaded from a Java Service loader | ||
*/ | ||
@FunctionalInterface | ||
public interface DbClientService { | ||
|
||
/** | ||
* Statement execution to be intercepted. | ||
* This method is called before the statement execution starts. | ||
* | ||
* @param context interceptor context | ||
* @return single that completes when this service is finished | ||
*/ | ||
DbClientServiceContext statement(DbClientServiceContext context); | ||
|
||
} |
Oops, something went wrong.