io.micronaut.data.operations.async.AsyncCriteriaRepositoryOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-model Show documentation
Show all versions of micronaut-data-model Show documentation
Data Repository Support for Micronaut
The newest version!
/*
* Copyright 2017-2020 original authors
*
* 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
*
* https://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.micronaut.data.operations.async;
import io.micronaut.core.annotation.Experimental;
import io.micronaut.core.annotation.NonNull;
import jakarta.persistence.criteria.CriteriaBuilder;
import jakarta.persistence.criteria.CriteriaDelete;
import jakarta.persistence.criteria.CriteriaQuery;
import jakarta.persistence.criteria.CriteriaUpdate;
import java.util.List;
import java.util.concurrent.CompletionStage;
/**
* The repository operations that support executing criteria queries.
*
* @author Denis Stepanov
* @since 4.5.0
*/
@Experimental
public interface AsyncCriteriaRepositoryOperations extends AsyncCriteriaCapableRepository {
@Override
default AsyncCriteriaRepositoryOperations async() {
return this;
}
/**
* @return The criteria builder
*/
CriteriaBuilder getCriteriaBuilder();
/**
* Exists query.
*
* @param query The query
* @return True if query returns true or any row
* @since 4.10
*/
CompletionStage exists(@NonNull CriteriaQuery> query);
/**
* Find one by Query.
*
* @param query The query
* @param The result type
* @return A result or null
*/
CompletionStage findOne(@NonNull CriteriaQuery query);
/**
* Finds all results for the given query.
* @param query The query
* @param The generic type
* @return An iterable result
*/
CompletionStage> findAll(@NonNull CriteriaQuery query);
/**
* Finds all results for the given query.
*
* @param query The query
* @param offset The offset
* @param limit The limit
* @param The generic type
* @return An iterable result
*/
CompletionStage> findAll(@NonNull CriteriaQuery query, int offset, int limit);
/**
* Executes an update for the given query and parameter values. If it is possible to
* return the number of objects updated, then do so.
* @param query The prepared query
* @return An optional number with the count of the number of records updated
*/
CompletionStage updateAll(@NonNull CriteriaUpdate query);
/**
* Executes delete for the given query and parameter values. If it is possible to
* return the number of objects deleted, then do so.
* @param query The query
* @return An optional number with the count of the number of records updated
*/
CompletionStage deleteAll(@NonNull CriteriaDelete query);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy