Packages

class AzureStore[F[_]] extends Store[F, AzureBlob]

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

Instance Constructors

  1. new AzureStore(azure: BlobServiceAsyncClient, defaultFullMetadata: Boolean, defaultTrailingSlashFiles: Boolean, blockSize: Int, numBuffers: Int, queueSize: Int)(implicit arg0: Async[F])

    azure

    Azure Blob Service Async Client

    defaultFullMetadata

    return full object metadata on list, requires additional request per object. Metadata returned by default: size, lastModified, eTag, storageClass. This controls behaviour of list method from Store trait. Use listUnderlying to control on per-invocation basis.

    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.

    blockSize

    for upload, The block size is the size of each block that will be staged. This value also determines the number of requests that need to be made. If block size is large, upload will make fewer network calls, but each individual call will send more data and will therefore take longer. This parameter also determines the size that each buffer uses when buffering is required and consequently amount of memory consumed by such methods may be up to blockSize * numBuffers.

    numBuffers

    for buffered upload only, the number of buffers is the maximum number of buffers this method should allocate. Memory will be allocated lazily as needed. Must be at least two. Typically, the larger the number of buffers, the more parallel, and thus faster, the upload portion of this operation will be. The amount of memory consumed by methods using this value may be up to blockSize * numBuffers.

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() @HotSpotIntrinsicCandidate()
  6. def copy[A, B](src: Url[A], dst: Url[B]): F[Unit]
    Definition Classes
    AzureStore → Store
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def get[A](url: Url[A], chunkSize: Int): Stream[F, Byte]
    Definition Classes
    AzureStore → Store
  10. def get[A](url: Url[A]): Stream[F, Byte]
    Definition Classes
    Store
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def list[A](url: Url[A], recursive: Boolean): Stream[F, Url[AzureBlob]]
    Definition Classes
    AzureStore → Store
  15. def listUnderlying[A](url: Url[A], fullMetadata: Boolean, expectTrailingSlashFiles: Boolean, recursive: Boolean): Stream[F, Url[AzureBlob]]
  16. def move[A, B](src: Url[A], dst: Url[B]): F[Unit]
    Definition Classes
    AzureStore → Store
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def put[A](url: Url[A], overwrite: Boolean, properties: Option[BlobItemProperties], meta: Map[String, String]): Pipe[F, Byte, Unit]
  21. def put[A](url: Url[A], overwrite: Boolean = true, size: Option[Long] = None): Pipe[F, Byte, Unit]
    Definition Classes
    AzureStore → Store
  22. def putRotate[A](computeUrl: F[Url[A]], limit: Long): Pipe[F, Byte, Unit]
    Definition Classes
    AzureStore → Store
  23. def remove[A](url: Url[A], recursive: Boolean = false): F[Unit]
    Definition Classes
    AzureStore → Store
  24. def stat[A](url: Url[A]): Stream[F, Url[AzureBlob]]
    Definition Classes
    AzureStore → Store
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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, AzureBlob]

Inherited from AnyRef

Inherited from Any

Ungrouped