Package com.mongodb.async.client.gridfs
Class GridFSBuckets
- java.lang.Object
-
- com.mongodb.async.client.gridfs.GridFSBuckets
-
@Deprecated public final class GridFSBuckets extends Object
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)A factory for GridFSBucket instances.- Since:
- 3.3
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static GridFSBucket
create(MongoDatabase database)
Deprecated.Create a new GridFS bucket with the default'fs'
bucket namestatic GridFSBucket
create(MongoDatabase database, String bucketName)
Deprecated.Create a new GridFS bucket with a custom bucket name
-
-
-
Method Detail
-
create
public static GridFSBucket create(MongoDatabase database)
Deprecated.Create a new GridFS bucket with the default'fs'
bucket name- Parameters:
database
- the database instance to use with GridFS- Returns:
- the GridFSBucket
-
create
public static GridFSBucket create(MongoDatabase database, String bucketName)
Deprecated.Create a new GridFS bucket with a custom bucket name- Parameters:
database
- the database instance to use with GridFSbucketName
- the custom bucket name to use- Returns:
- the GridFSBucket
-
-