Package io.vertx.mongo
Interface MongoCollectionResult<TDocument>
- 
- All Superinterfaces:
 MongoResult<TDocument>
public interface MongoCollectionResult<TDocument> extends MongoResult<TDocument>
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Future<java.lang.Void>toCollection()Returns a future of the collection operation completenessdefault voidtoCollection(Handler<AsyncResult<java.lang.Void>> resultHandler)Handler called when the collection operation completes 
 - 
 
- 
- 
Method Detail
- 
toCollection
default void toCollection(Handler<AsyncResult<java.lang.Void>> resultHandler)
Handler called when the collection operation completes- Parameters:
 resultHandler- handler
 
- 
toCollection
Future<java.lang.Void> toCollection()
Returns a future of the collection operation completeness- Returns:
 - a future of the collection operation completeness
 
 
 - 
 
 -