Package | Description |
---|---|
org.hibernate.reactive.session |
Defines internal contracts between subsystems of Hibernate Reactive
and the
ReactiveSession . |
Modifier and Type | Interface and Description |
---|---|
interface |
ReactiveNativeQuery<R>
An internal contract between the reactive session implementation
and the
Stage.Query and
Mutiny.Query APIs. |
Modifier and Type | Method and Description |
---|---|
ReactiveQuery<R> |
Criteria.build(org.hibernate.reactive.session.impl.CriteriaQueryRenderingContext context,
ReactiveQueryExecutor session) |
<T> ReactiveQuery<T> |
ReactiveQueryExecutor.createReactiveCriteriaQuery(String jpaqlString,
Class<T> resultClass,
CriteriaQueryOptions queryOptions) |
<R> ReactiveQuery<R> |
ReactiveQueryExecutor.createReactiveNamedQuery(String name) |
<R> ReactiveQuery<R> |
ReactiveQueryExecutor.createReactiveNamedQuery(String name,
Class<R> resultClass) |
<T> ReactiveQuery<T> |
ReactiveQueryExecutor.createReactiveNativeQuery(String sqlString) |
<T> ReactiveQuery<T> |
ReactiveQueryExecutor.createReactiveNativeQuery(String sqlString,
Class<T> resultType) |
<T> ReactiveQuery<T> |
ReactiveQueryExecutor.createReactiveNativeQuery(String sqlString,
String resultSetMapping) |
<R> ReactiveQuery<R> |
ReactiveQueryExecutor.createReactiveQuery(Criteria<R> criteria) |
<R> ReactiveQuery<R> |
ReactiveQueryExecutor.createReactiveQuery(String queryString) |
<R> ReactiveQuery<R> |
ReactiveQueryExecutor.createReactiveQuery(String queryString,
Class<R> resultType) |
ReactiveQuery<R> |
ReactiveQuery.setCacheable(boolean cacheable) |
ReactiveQuery<R> |
ReactiveQuery.setCacheMode(org.hibernate.CacheMode cacheMode) |
ReactiveQuery<R> |
ReactiveQuery.setCacheRegion(String cacheRegion) |
ReactiveQuery<R> |
ReactiveQuery.setComment(String comment) |
ReactiveQuery<R> |
ReactiveQuery.setFirstResult(int firstResult) |
ReactiveQuery<R> |
ReactiveQuery.setHibernateFlushMode(org.hibernate.FlushMode flushMode) |
ReactiveQuery<R> |
ReactiveQuery.setLockMode(org.hibernate.LockMode lockMode) |
ReactiveQuery<R> |
ReactiveQuery.setLockMode(String alias,
org.hibernate.LockMode lockMode) |
ReactiveQuery<R> |
ReactiveQuery.setLockOptions(org.hibernate.LockOptions lockOptions) |
ReactiveQuery<R> |
ReactiveQuery.setMaxResults(int maxResults) |
ReactiveQuery<R> |
ReactiveQuery.setParameter(int position,
Object value) |
<T> ReactiveQuery<R> |
ReactiveQuery.setParameter(Parameter<T> parameter,
T value) |
ReactiveQuery<R> |
ReactiveQuery.setParameter(String name,
Object value) |
ReactiveQuery<R> |
ReactiveQuery.setQueryHint(String hintName,
Object value) |
ReactiveQuery<R> |
ReactiveQuery.setQuerySpaces(String[] querySpaces) |
ReactiveQuery<R> |
ReactiveQuery.setReadOnly(boolean readOnly) |
ReactiveQuery<R> |
ReactiveQuery.setResultTransformer(org.hibernate.transform.ResultTransformer resultTransformer) |
Copyright © 2020-2022 Red Hat, Inc. All Rights Reserved.