Functions

Link copied to clipboard
abstract fun count(condition: Condition?): Mono<Long?>?
abstract fun <S : RemovedAssignmentEvent?> count(example: Example<S?>?): Mono<Long?>?
abstract fun count(): Mono<Long?>?
Link copied to clipboard
abstract fun delete(entity: RemovedAssignmentEvent?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteAll(): Mono<Void?>?
abstract fun deleteAll(entities: Iterable<out RemovedAssignmentEvent?>?): Mono<Void?>?
abstract fun deleteAll(entityStream: Publisher<out RemovedAssignmentEvent?>?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteAllById(ids: Iterable<out String?>?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteById(id: String?): Mono<Void?>?
abstract fun deleteById(id: Publisher<String?>?): Mono<Void?>?
Link copied to clipboard
abstract fun exists(condition: Condition?): Mono<Boolean?>?
abstract fun <S : RemovedAssignmentEvent?> exists(example: Example<S?>?): Mono<Boolean?>?
Link copied to clipboard
abstract fun existsById(id: String?): Mono<Boolean?>?
abstract fun existsById(id: Publisher<String?>?): Mono<Boolean?>?
Link copied to clipboard
abstract fun findAll(condition: Condition?): Flux<RemovedAssignmentEvent?>?
abstract fun findAll(vararg sortItems: SortItem?): Flux<RemovedAssignmentEvent?>?
abstract fun findAll(condition: Condition?, sort: Sort?): Flux<RemovedAssignmentEvent?>?
abstract fun findAll(condition: Condition?, vararg sortItems: SortItem?): Flux<RemovedAssignmentEvent?>?
abstract fun <S : RemovedAssignmentEvent?> findAll(example: Example<S?>?): Flux<S?>?
abstract fun <S : RemovedAssignmentEvent?> findAll(example: Example<S?>?, sort: Sort?): Flux<S?>?
abstract fun findAll(): Flux<RemovedAssignmentEvent?>?
abstract fun findAll(sort: Sort?): Flux<RemovedAssignmentEvent?>?
Link copied to clipboard
abstract fun findAllById(ids: Iterable<String?>?): Flux<RemovedAssignmentEvent?>?
abstract fun findAllById(idStream: Publisher<String?>?): Flux<RemovedAssignmentEvent?>?
Link copied to clipboard
suspend fun <T : Any> GropiusRepository<T, String>.findAllById(ids: Iterable<ID>): List<T>

Wrapper for ReactiveCrudRepository.findAllById which unwraps the provided ids and awaits the result

Link copied to clipboard
abstract fun <S : RemovedAssignmentEvent?, R : Any?, P : Publisher<R?>?> findBy(example: Example<S?>?, queryFunction: Function<FluentQuery.ReactiveFluentQuery<S?>?, P?>?): P?
Link copied to clipboard
abstract fun findById(id: String?): Mono<RemovedAssignmentEvent?>?
abstract fun findById(id: Publisher<String?>?): Mono<RemovedAssignmentEvent?>?
Link copied to clipboard
suspend fun <T : Any> GropiusRepository<T, String>.findById(id: ID): T

Wrapper for ReactiveCrudRepository.findById which unwraps the provided id and awaits the result

Link copied to clipboard
abstract fun findOne(condition: Condition?): Mono<RemovedAssignmentEvent?>?
abstract fun <S : RemovedAssignmentEvent?> findOne(example: Example<S?>?): Mono<S?>?
Link copied to clipboard
abstract fun <S : RemovedAssignmentEvent?> save(entity: S?): Mono<S?>?
Link copied to clipboard
abstract fun <S : RemovedAssignmentEvent?> saveAll(entities: Iterable<S?>?): Flux<S?>?
abstract fun <S : RemovedAssignmentEvent?> saveAll(entityStream: Publisher<S?>?): Flux<S?>?