Uses of Class
org.hibernate.reactive.common.Identifier
-
Packages that use Identifier Package Description org.hibernate.reactive.common org.hibernate.reactive.mutiny An API for Hibernate Reactive where non-blocking operations are represented by a MutinyUni.org.hibernate.reactive.stage An API for Hibernate Reactive where non-blocking operations are represented by a JavaCompletionStage. -
-
Uses of Identifier in org.hibernate.reactive.common
Subclasses of Identifier in org.hibernate.reactive.common Modifier and Type Class Description static classIdentifier.Composite<T>static classIdentifier.Id<T>Methods in org.hibernate.reactive.common that return Identifier Modifier and Type Method Description static <T> Identifier<T>Identifier. composite(Identifier.Id<T>... ids) -
Uses of Identifier in org.hibernate.reactive.mutiny
Methods in org.hibernate.reactive.mutiny with parameters of type Identifier Modifier and Type Method Description <T> io.smallrye.mutiny.Uni<T>Mutiny.Session. find(Class<T> entityClass, Identifier<T> naturalId)Asynchronously return the persistent instance of the given entity class with the given natural identifier, or null if there is no such persistent instance. -
Uses of Identifier in org.hibernate.reactive.stage
Methods in org.hibernate.reactive.stage with parameters of type Identifier Modifier and Type Method Description <T> CompletionStage<T>Stage.Session. find(Class<T> entityClass, Identifier<T> naturalId)Asynchronously return the persistent instance of the given entity class with the given natural identifiers, or null if there is no such persistent instance.
-