Packages

class GcsStore[F[_]] extends Store[F, GcsBlob]

Linear Supertypes
Store[F, GcsBlob], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GcsStore
  2. Store
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GcsStore(storage: Storage, blocker: Blocker, acls: List[Acl] = Nil, defaultTrailingSlashFiles: Boolean = false, defaultDirectDownload: Boolean = false)(implicit arg0: ConcurrentEffect[F], arg1: Timer[F], arg2: ContextShift[F])

    storage

    configured instance of GCS Storage

    acls

    list of Access Control List objects to be set on all uploads.

    defaultTrailingSlashFiles

    test if folders returned by list are files with trailing slashes in their names. This controls behaviour of list method from Store trait. Use listUnderlying to control on per-invocation basis.

    defaultDirectDownload

    use direct download. When enabled the whole media content is downloaded in a single request (but still streamed). Otherwise use the resumable media download protocol to download in data chunks. This controls behaviour of get method from Store trait. Use getUnderlying to control on per-invocation basis.

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( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def copy[A, B](src: Url[A], dst: Url[B]): F[Unit]

    Copies bytes from srcPath to dstPath.

    Copies bytes from srcPath to dstPath. Stores should optimize to use native copy functions to avoid data transfer.

    src

    path

    dst

    path

    returns

    F[Unit]

    Definition Classes
    GcsStore → Store
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def get[A](url: Url[A], chunkSize: Int, options: List[BlobGetOption]): Stream[F, Byte]
  10. def get[A](url: Url[A], chunkSize: Int): Stream[F, Byte]
    Definition Classes
    GcsStore → Store
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getUnderlying[A](url: Url[A], chunkSize: Int, direct: Boolean, options: BlobGetOption*): Stream[F, Byte]
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def list[A](url: Url[A], recursive: Boolean, options: List[BlobListOption]): Stream[F, Url[GcsBlob]]
  16. def list[A](url: Url[A], recursive: Boolean = false): Stream[F, Url[GcsBlob]]
    Definition Classes
    GcsStore → Store
  17. def listUnderlying[A](url: Url[A], expectTrailingSlashFiles: Boolean, recursive: Boolean, inputOptions: BlobListOption*): Stream[F, Url[GcsBlob]]
  18. def move[A, B](src: Url[A], dst: Url[B]): F[Unit]

    Moves bytes from srcPath to dstPath.

    Moves bytes from srcPath to dstPath. Stores should optimize to use native move functions to avoid data transfer.

    src

    path

    dst

    path

    returns

    F[Unit]

    Definition Classes
    GcsStore → Store
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def put[A](path: Path[GcsBlob], options: List[BlobWriteOption]): Pipe[F, Byte, Unit]
  23. def put[A](url: Url[A], overwrite: Boolean, options: List[BlobWriteOption]): Pipe[F, Byte, Unit]
  24. def put[A](url: Url[A], overwrite: Boolean = true, size: Option[Long] = None): Pipe[F, Byte, Unit]
    Definition Classes
    GcsStore → Store
  25. def putRotate[A](computeUrl: F[Url[A]], limit: Long): Pipe[F, Byte, Unit]
    Definition Classes
    GcsStore → Store
  26. def remove[A](url: Url[A], recursive: Boolean = false): F[Unit]
    Definition Classes
    GcsStore → Store
  27. def stat[A](url: Url[A]): Stream[F, Url[GcsBlob]]
    Definition Classes
    GcsStore → Store
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Store[F, GcsBlob]

Inherited from AnyRef

Inherited from Any

Ungrouped