MongoDB driver for Kotlin (coroutines) • opensavvy.ktmongo.coroutines.operations
Package-level declarations¶
Declaration of the different types of operations.
Types¶
AggregationOperations
¶
interface AggregationOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations relating to aggregation pipelines
BaseOperations
¶
interface BaseOperations
CollectionOperations
¶
interface CollectionOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations relating to collection administration.
CountOperations
¶
interface CountOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations relating to counting documents.
DeleteOperations
¶
interface DeleteOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations relating to deleting documents.
FindOperations
¶
interface FindOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations allowing to search for information.
InsertOperations
¶
interface InsertOperations<Document> : BaseOperations
UpdateOperations
¶
interface UpdateOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations allowing to update existing information.
UpdatePipelineOperations
¶
interface UpdatePipelineOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations allowing to update existing information using aggregation pipelines.