net.binis.codegen.spring.query.QueryStarter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-generator-spring Show documentation
Show all versions of code-generator-spring Show documentation
Spring extension for Binis Code Generation
package net.binis.codegen.spring.query;
/*-
* #%L
* code-generator-spring
* %%
* Copyright (C) 2021 - 2024 Binis Belev
* %%
* 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.
* #L%
*/
import java.time.Duration;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import java.util.function.Function;
public interface QueryStarter {
S by();
S by(Class> projection);
A aggregate();
F select();
U update();
T by(boolean condition, Function query);
T by(boolean condition, Function query, Function elseQuery);
QueryParam nativeQuery(String query);
QueryParam query(String query);
void transaction(Consumer> consumer);
CompletableFuture asyncC(Consumer> consumer);
CompletableFuture async(Function, T> func);
CompletableFuture asyncC(long delay, TimeUnit unit, Consumer> consumer);
CompletableFuture async(long delay, TimeUnit unit, Function, T> func);
CompletableFuture asyncC(Duration duration, Consumer> consumer);
CompletableFuture async(Duration duration, Function, T> func);
CompletableFuture asyncC(String flow, Consumer> consumer);
CompletableFuture async(String flow, Function, T> func);
CompletableFuture asyncC(String flow, long delay, TimeUnit unit, Consumer> consumer);
CompletableFuture async(String flow, long delay, TimeUnit unit, Function, T> func);
CompletableFuture asyncC(String flow, Duration duration, Consumer> consumer);
CompletableFuture async(String flow, Duration duration, Function, T> func);
R reference(Object id);
}