org.mongodb.WriteResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoFS Show documentation
Show all versions of mongoFS Show documentation
An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports.
Compressed file storage, zip files, temporary files
package org.mongodb;
public class WriteResult {
private com.mongodb.WriteResult surrogate;
public WriteResult(final com.mongodb.WriteResult in) {
this.surrogate = in;
}
public int getCount() {
return surrogate.getN();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy