Package net.binis.codegen.spring.query
Interface QueryStarter<R,S,A,F>
- All Known Implementing Classes:
QueryExecutor
public interface QueryStarter<R,S,A,F>
-
Method Summary
-
Method Details
-
by
S by() -
by
-
aggregate
A aggregate() -
select
F select() -
by
-
by
-
nativeQuery
-
query
-
transaction
-
asyncC
-
async
-
asyncC
CompletableFuture<Void> asyncC(long delay, TimeUnit unit, Consumer<QueryStarter<R,S,A,F>> consumer) -
async
<T> CompletableFuture<T> async(long delay, TimeUnit unit, Function<QueryStarter<R,S,A,F>,T> func) -
asyncC
-
async
-
asyncC
-
async
-
asyncC
CompletableFuture<Void> asyncC(String flow, long delay, TimeUnit unit, Consumer<QueryStarter<R,S,A,F>> consumer) -
async
<T> CompletableFuture<T> async(String flow, long delay, TimeUnit unit, Function<QueryStarter<R,S,A,F>,T> func) -
asyncC
CompletableFuture<Void> asyncC(String flow, Duration duration, Consumer<QueryStarter<R,S,A,F>> consumer) -
async
<T> CompletableFuture<T> async(String flow, Duration duration, Function<QueryStarter<R,S,A,F>,T> func) -
reference
-