forked from openGemini/opengemini-client-java
-
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.
chore: set conditional on missing bean by class (openGemini#134)
Signed-off-by: weiping-code <[email protected]>
- Loading branch information
1 parent
f85ba65
commit e19a2be
Showing
3 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
7 changes: 5 additions & 2 deletions
7
...ain/java/io/opengemini/client/spring/data/config/OpenGeminiReactiveAutoConfiguration.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
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
5 changes: 2 additions & 3 deletions
5
...ini-spring/src/main/java/io/opengemini/client/spring/data/core/MeasurementOperations.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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
package io.opengemini.client.spring.data.core; | ||
|
||
import io.opengemini.client.api.OpenGeminiException; | ||
import io.opengemini.client.api.Query; | ||
|
||
import java.util.List; | ||
|
||
public interface MeasurementOperations<T> { | ||
|
||
void write(T t) throws OpenGeminiException; | ||
void write(T t); | ||
|
||
void write(List<T> list) throws OpenGeminiException; | ||
void write(List<T> list); | ||
|
||
List<T> query(Query query); | ||
} |