vert-x3 / vertx-mongo-client

Mongo Client for Eclipse Vert.x
http://vertx.io
Apache License 2.0
60 stars 99 forks source link

MongoClient::renameCollection(....) #278

Closed M4ikT closed 5 months ago

M4ikT commented 2 years ago

Read me

Describe the feature

io.vertx.ext.mongo.MongoClient should implement

Publisher<Void> renameCollection(MongoNamespace newCollectionNamespace); Publisher<Void> renameCollection(MongoNamespace newCollectionNamespace, RenameCollectionOptions options); Publisher<Void> renameCollection(ClientSession clientSession, MongoNamespace newCollectionNamespace); Publisher<Void> renameCollection(ClientSession clientSession, MongoNamespace newCollectionNamespace, RenameCollectionOptions options);

which is already implemented in com.mongodb.reactivestreams.client.MongoCollection.

Use cases

Contribution

I'm able to implement this feature.

wzy1935 commented 5 months ago

Hi, I created a PR for this, hope it helps 👀