class GcsStore[F[_]] extends Store[F, GcsBlob]
- Alphabetic
- By Inheritance
- GcsStore
- Store
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new GcsStore(storage: Storage, acls: List[Acl] = Nil, defaultTrailingSlashFiles: Boolean = false, defaultDirectDownload: Boolean = false)(implicit arg0: Async[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
listare files with trailing slashes in their names. This controls behaviour oflistmethod 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
getmethod from Store trait. Use getUnderlying to control on per-invocation basis.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- 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
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def get[A](url: Url[A], chunkSize: Int, options: List[BlobGetOption]): Stream[F, Byte]
- def get[A](url: Url[A], chunkSize: Int): Stream[F, Byte]
- Definition Classes
- GcsStore → Store
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getUnderlying[A](url: Url[A], chunkSize: Int, direct: Boolean, options: BlobGetOption*): Stream[F, Byte]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def list[A](url: Url[A], recursive: Boolean, options: List[BlobListOption]): Stream[F, Url[GcsBlob]]
- def list[A](url: Url[A], recursive: Boolean = false): Stream[F, Url[GcsBlob]]
- Definition Classes
- GcsStore → Store
- def listUnderlying[A](url: Url[A], expectTrailingSlashFiles: Boolean, recursive: Boolean, inputOptions: BlobListOption*): Stream[F, Url[GcsBlob]]
- 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
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def put[A](path: Path[GcsBlob], options: List[BlobWriteOption]): Pipe[F, Byte, Unit]
- def put[A](url: Url[A], overwrite: Boolean, options: List[BlobWriteOption]): Pipe[F, Byte, Unit]
- def put[A](url: Url[A], overwrite: Boolean = true, size: Option[Long] = None): Pipe[F, Byte, Unit]
- Definition Classes
- GcsStore → Store
- def putRotate[A](computeUrl: F[Url[A]], limit: Long): Pipe[F, Byte, Unit]
- Definition Classes
- GcsStore → Store
- def remove[A](url: Url[A], recursive: Boolean = false): F[Unit]
- Definition Classes
- GcsStore → Store
- def stat[A](url: Url[A]): Stream[F, Url[GcsBlob]]
- Definition Classes
- GcsStore → Store
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated