opensavvy.ktmongo.api¶
Types¶
MongoAggregationPipeline¶
interface MongoAggregationPipeline<Document : Any> : AggregationPipeline<Document>
A multi-stage aggregation pipeline that transforms documents from a MongoDB collection.
MongoClient¶
interface MongoClient : AutoCloseable
Entry-point to the KtMongo drivers.
MongoCollection¶
interface MongoCollection<Document : Any> : ObjectIdGenerator, AggregationOperations<Document> , ClientSideViewOperations<Document> , CollectionOperations<Document> , CountOperations<Document> , DeleteOperations<Document> , FindOperations<Document> , InsertOperations<Document> , UpdateOperations<Document> , UpdatePipelineOperations<Document>
A collection stores related documents together.
MongoDatabase¶
interface MongoDatabase
A grouping of collections with the same theme.
MongoIterable¶
interface MongoIterable<Document : Any>
Streaming-capable iterable cursor to read data from the database.