package gridfs
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- gridfs
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- trait BasicMetadata[+Id] extends AnyRef
Common metadata.
Common metadata.
- Id
Type of the id of this file (generally BSON ObjectID).
- trait ComputedMetadata extends AnyRef
Metadata that cannot be customized.
- trait CustomMetadata[P <: SerializationPack] extends AnyRef
Custom metadata (generic trait)
- trait FileToSave[P <: SerializationPack with Singleton, +Id] extends BasicMetadata[Id] with CustomMetadata[P]
A file that will be saved in a GridFS store.
A file that will be saved in a GridFS store.
- Id
Type of the id of this file (generally BSON ObjectID).
- sealed trait GridFS[P <: SerializationPack with Singleton] extends GridFSSerialization[P]
A GridFS store.
- trait ReadFile[P <: SerializationPack, +Id] extends BasicMetadata[Id] with CustomMetadata[P] with ComputedMetadata
A file read from a GridFS store.
A file read from a GridFS store.
- Id
Type of the id of this file (BSON ObjectID).
Deprecated Type Members
- class DefaultFileToSave extends FileToSave[BSONSerializationPack.type, BSONValue] with Equals
A BSON implementation of
FileToSave
.A BSON implementation of
FileToSave
.- Annotations
- @deprecated
- Deprecated
(Since version 0.19.0) Use
reactivemongo.api.bson
types
- case class DefaultReadFile(id: BSONValue, contentType: Option[String], filename: Option[String], uploadDate: Option[Long], chunkSize: Int, length: Long, md5: Option[String], metadata: BSONDocument, original: BSONDocument) extends ReadFile[BSONSerializationPack.type, BSONValue] with Product with Serializable
A BSON implementation of
ReadFile
.A BSON implementation of
ReadFile
.- Annotations
- @SerialVersionUID() @deprecated
- Deprecated
(Since version 0.19.0) Use
ReadFile.apply
- type IdProducer[Id] = ((String, Id)) => Producer[BSONElement]
- Annotations
- @deprecated
- Deprecated
(Since version 0.19.0) Unused
Value Members
- object DefaultFileToSave
Factory of DefaultFileToSave.
- object GridFS
- object Implicits
- object ReadFile