Uses of Class
io.quarkus.mongodb.panache.reactive.ReactivePanacheMongoEntityBase
Packages that use ReactivePanacheMongoEntityBase
-
Uses of ReactivePanacheMongoEntityBase in io.quarkus.mongodb.panache.reactive
Subclasses of ReactivePanacheMongoEntityBase in io.quarkus.mongodb.panache.reactiveModifier and TypeClassDescriptionclassRepresents an entity with a generated ID fieldReactivePanacheMongoEntity.idof typeObjectId.Methods in io.quarkus.mongodb.panache.reactive with type parameters of type ReactivePanacheMongoEntityBaseModifier and TypeMethodDescriptionstatic <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>ReactivePanacheMongoEntityBase.find(String query, Parameters params) Find entities using a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>ReactivePanacheMongoEntityBase.find(String query, Sort sort, Parameters params) Find entities using a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>Find entities using a query and the given sort options, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>Find entities using a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>Find entities using a query, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>Find entities using a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>ReactivePanacheMongoEntityBase.find(org.bson.Document query) Find entities using a BSON query.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>ReactivePanacheMongoEntityBase.find(org.bson.Document query, org.bson.Document sort) Find entities using a BSON query and a BSON sort.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>ReactivePanacheMongoEntityBase.findAll()Find all entities of this type.static <T extends ReactivePanacheMongoEntityBase>
ReactivePanacheQuery<T>Find all entities of this type, in the given order.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<T>Find an entity of this type by ID.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<Optional<T>>ReactivePanacheMongoEntityBase.findByIdOptional(Object id) Find an entity of this type by ID.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>ReactivePanacheMongoEntityBase.list(String query, Parameters params) Find entities matching a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>ReactivePanacheMongoEntityBase.list(String query, Sort sort, Parameters params) Find entities matching a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>ReactivePanacheMongoEntityBase.list(org.bson.Document query) Find entities using a BSON query.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>ReactivePanacheMongoEntityBase.list(org.bson.Document query, org.bson.Document sort) Find entities using a BSON query and a BSON sort.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>ReactivePanacheMongoEntityBase.listAll()Find all entities of this type.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find all entities of this type, in the given order.static <T extends ReactivePanacheMongoEntityBase>
io.quarkus.mongodb.reactive.ReactiveMongoCollection<T>ReactivePanacheMongoEntityBase.mongoCollection()Allow to access the underlying Mongo Collection.<T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<T>ReactivePanacheMongoEntityBase.persist()Persist this entity in the database.<T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<T>ReactivePanacheMongoEntityBase.persistOrUpdate()Persist this entity in the database or update it if it already exists.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>ReactivePanacheMongoEntityBase.stream(String query, Parameters params) Find entities matching a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>ReactivePanacheMongoEntityBase.stream(String query, Sort sort, Parameters params) Find entities matching a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>Find entities matching a query and the given sort options, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>Find entities matching a query, with optional indexed parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>Find entities matching a query, with named parameters.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>ReactivePanacheMongoEntityBase.stream(org.bson.Document query) Find entities using a BSON query.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>ReactivePanacheMongoEntityBase.stream(org.bson.Document query, org.bson.Document sort) Find entities using a BSON query and a BSON sort.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>ReactivePanacheMongoEntityBase.streamAll()Find all entities of this type.static <T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Multi<T>Find all entities of this type, in the given order.<T extends ReactivePanacheMongoEntityBase>
io.smallrye.mutiny.Uni<T>ReactivePanacheMongoEntityBase.update()Update this entity in the database.