Package

reactivemongo.api

gridfs

Permalink

package gridfs

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. gridfs
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait BasicMetadata[+Id] extends AnyRef

    Permalink

    Common metadata.

    Common metadata.

    Id

    Type of the id of this file (generally BSON ObjectID).

  2. trait ComputedMetadata extends AnyRef

    Permalink

    Metadata that cannot be customized.

  3. trait CustomMetadata[P <: SerializationPack] extends AnyRef

    Permalink

    Custom metadata (generic trait)

  4. trait FileToSave[P <: SerializationPack with Singleton, +Id] extends BasicMetadata[Id] with CustomMetadata[P]

    Permalink

    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).

  5. abstract class GridFS[P <: SerializationPack with Singleton] extends AnyRef

    Permalink

    A GridFS store.

  6. trait ReadFile[P <: SerializationPack, +Id] extends BasicMetadata[Id] with CustomMetadata[P] with ComputedMetadata

    Permalink

    A file read from a GridFS store.

    A file read from a GridFS store.

    Id

    Type of the id of this file (BSON ObjectID).

  7. class DefaultFileToSave extends FileToSave[BSONSerializationPack.type, BSONValue] with Equals

    Permalink

    A BSON implementation of FileToSave.

    A BSON implementation of FileToSave.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.19.0) Use reactivemongo.api.bson types

  8. 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

    Permalink

    A BSON implementation of ReadFile.

    A BSON implementation of ReadFile.

    Annotations
    @SerialVersionUID() @deprecated
    Deprecated

    (Since version 0.19.0) Use ReadFile.apply

  9. type IdProducer[Id] = ((String, Id)) ⇒ Producer[BSONElement]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.19.0) Unused

Value Members

  1. object DefaultFileToSave

    Permalink

    Factory of DefaultFileToSave.

  2. object GridFS extends LowPriorityGridFS

    Permalink
  3. object Implicits

    Permalink
  4. object ReadFile

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped