void |
GridFSBucket.downloadToStream(ClientSession clientSession,
String filename,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the latest version of the stored file specified by filename and writes the contents to
the destination Stream.
|
void |
GridFSBucket.downloadToStream(ClientSession clientSession,
String filename,
AsyncOutputStream destination,
GridFSDownloadOptions options,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by filename and by the revision in options and writes the
contents to the destination Stream.
|
void |
GridFSBucket.downloadToStream(ClientSession clientSession,
BsonValue id,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by id and writes the contents to the destination
AsyncOutputStream.
|
void |
GridFSBucket.downloadToStream(ClientSession clientSession,
ObjectId id,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by id and writes the contents to the destination
AsyncOutputStream.
|
void |
GridFSBucket.downloadToStream(String filename,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the latest version of the stored file specified by filename and writes the contents to
the destination Stream.
|
void |
GridFSBucket.downloadToStream(String filename,
AsyncOutputStream destination,
GridFSDownloadOptions options,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by filename and by the revision in options and writes the
contents to the destination Stream.
|
void |
GridFSBucket.downloadToStream(BsonValue id,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by id and writes the contents to the destination
AsyncOutputStream.
|
void |
GridFSBucket.downloadToStream(ObjectId id,
AsyncOutputStream destination,
SingleResultCallback<Long> callback) |
Deprecated.
Downloads the contents of the stored file specified by id and writes the contents to the destination
AsyncOutputStream.
|