t

binny

ChunkedBinaryStore

trait ChunkedBinaryStore[F[_]] extends BinaryStore[F]

A BinaryStore that can also store chunks out of order.

Linear Supertypes
BinaryStore[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChunkedBinaryStore
  2. BinaryStore
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def delete(id: BinaryId): F[Unit]

    Deletes all data associated to the given id.

    Deletes all data associated to the given id.

    Definition Classes
    BinaryStore
  2. abstract def findBinary(id: BinaryId, range: ByteRange): OptionT[F, Binary[F]]

    Finds a binary by its id.

    Finds a binary by its id. The range argument controls which part to return.

    Definition Classes
    BinaryStore
  3. abstract def insert(hint: Hint): Pipe[F, Byte, BinaryId]

    Insert the given bytes creating a new id.

    Insert the given bytes creating a new id.

    Definition Classes
    BinaryStore
  4. abstract def insertChunk(id: BinaryId, chunkDef: ChunkDef, hint: Hint, data: ByteVector): F[InsertChunkResult]

    Inserts the given chunk.

    Inserts the given chunk. This method allows to store chunks out of order. It is required to specify the total amount of chunks; thus the total length of the file must be known up front.

    The first chunk starts at index 0.

    The maximum chunk size is constant and defined by the implementation. All chunks must not exceed this length. If the complete file consists of multiple chunks, then only the last one may have less than this size.

  5. abstract def insertWith(id: BinaryId, hint: Hint): Pipe[F, Byte, Nothing]

    Insert the given bytes to the given id.

    Insert the given bytes to the given id. If some file already exists by this id, the behavior depends on the implementation.

    Definition Classes
    BinaryStore

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from BinaryStore[F]

Inherited from AnyRef

Inherited from Any

Ungrouped