Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
interface ReactiveSnapshotListQueryApi<S : Any> : SnapshotListQueryApi<Flux<MaterializedSnapshot<S>>, Flux<Map<String, Any>>, Flux<S>>
Link copied to clipboard
interface ReactiveSnapshotPagedQueryApi<S : Any> : SnapshotPagedQueryApi<Mono<PagedList<MaterializedSnapshot<S>>>, Mono<PagedList<Map<String, Any>>>, Mono<PagedList<S>>>
Link copied to clipboard
Link copied to clipboard
interface ReactiveSnapshotSingleQueryApi<S : Any> : SnapshotSingleQueryApi<Mono<MaterializedSnapshot<S>>, Mono<Map<String, Any>>, Mono<S>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
interface SnapshotQueryApi
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
interface SynchronousSnapshotListQueryApi<S : Any> : SnapshotListQueryApi<List<MaterializedSnapshot<S>>, List<Map<String, Any>>, List<S>>
Link copied to clipboard
interface SynchronousSnapshotPagedQueryApi<S : Any> : SnapshotPagedQueryApi<PagedList<MaterializedSnapshot<S>>, PagedList<Map<String, Any>>, PagedList<S>>
Link copied to clipboard
Link copied to clipboard
interface SynchronousSnapshotSingleQueryApi<S : Any> : SnapshotSingleQueryApi<MaterializedSnapshot<S>?, Map<String, Any>?, S?>
Properties
Functions
Link copied to clipboard
Link copied to clipboard
fun IListQuery.dynamicQuery(snapshotQueryApi: ReactiveSnapshotListQueryApi<*>): Flux<Map<String, Any>>
fun IListQuery.dynamicQuery(snapshotQueryApi: SynchronousSnapshotListQueryApi<*>): List<Map<String, Any>>
fun IPagedQuery.dynamicQuery(snapshotQueryApi: ReactiveSnapshotPagedQueryApi<*>): Mono<PagedList<Map<String, Any>>>
fun IPagedQuery.dynamicQuery(snapshotQueryApi: SynchronousSnapshotPagedQueryApi<*>): PagedList<Map<String, Any>>
fun ISingleQuery.dynamicQuery(snapshotQueryApi: ReactiveSnapshotSingleQueryApi<*>): Mono<Map<String, Any>>
fun ISingleQuery.dynamicQuery(snapshotQueryApi: SynchronousSnapshotSingleQueryApi<*>): Map<String, Any>?
Link copied to clipboard
fun <S : Any> IListQuery.query(snapshotQueryApi: ReactiveSnapshotListQueryApi<S>): Flux<MaterializedSnapshot<S>>
fun <S : Any> IListQuery.query(snapshotQueryApi: SynchronousSnapshotListQueryApi<S>): List<MaterializedSnapshot<S>>
fun <S : Any> IPagedQuery.query(snapshotQueryApi: ReactiveSnapshotPagedQueryApi<S>): Mono<PagedList<MaterializedSnapshot<S>>>
fun <S : Any> IPagedQuery.query(snapshotQueryApi: SynchronousSnapshotPagedQueryApi<S>): PagedList<MaterializedSnapshot<S>>
fun <S : Any> ISingleQuery.query(snapshotQueryApi: ReactiveSnapshotSingleQueryApi<S>): Mono<MaterializedSnapshot<S>>
fun <S : Any> ISingleQuery.query(snapshotQueryApi: SynchronousSnapshotSingleQueryApi<S>): MaterializedSnapshot<S>?
Link copied to clipboard
fun <S : Any> IPagedQuery.queryState(snapshotQueryApi: ReactiveSnapshotPagedQueryApi<S>): Mono<PagedList<S>>
fun <S : Any> IPagedQuery.queryState(snapshotQueryApi: SynchronousSnapshotPagedQueryApi<S>): PagedList<S>
Link copied to clipboard
Link copied to clipboard