Skip to content

An Akka-Stream Source wrapper for GridFSDownloadStream in Mongodb scala driver

License

Notifications You must be signed in to change notification settings

zhijun/GridFSSource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

GridFSSource

An Akka-Stream Source wrapper for GridFSDownloadStream in Mongodb scala driver

MongoDB Scala driver provides its unique async in/out streams which cannot be directly integrated into Akka Stream in terms of ByteString. This wrapper makes it possible.

Usage:

val stream = mongo.gridfs.openDownloadStream(ObjectId(".."))
val source: Source[ByteString, NotUsed] = GridfsSource(stream)
source.runWith(Sink.foreach(println))

About

An Akka-Stream Source wrapper for GridFSDownloadStream in Mongodb scala driver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages