Trait

zio.ftp

FtpAccessors

Related Doc: package ftp

Permalink

trait FtpAccessors[+A] extends AnyRef

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

Abstract Value Members

  1. abstract def execute[T](f: (A) ⇒ T): ZIO[Blocking, IOException, T]

    Permalink

    Lift unsafe operation that does blocking IO into a pure value.

    Lift unsafe operation that does blocking IO into a pure value. If the operation failed an error will be emitted

    T

    return value

    f

    unsafe function to lift

  2. abstract def ls(path: String): ZStream[Blocking, IOException, FtpResource]

    Permalink

    List of files / directories.

    List of files / directories. If the operation failed, an error will be emitted

    path

    absolute path of the directory

  3. abstract def lsDescendant(path: String): ZStream[Blocking, IOException, FtpResource]

    Permalink

    List of files from a base directory recursively.

    List of files from a base directory recursively. If the operation failed, an error will be emitted

    path

    absolute path of the directory

  4. abstract def mkdir(path: String): ZIO[Blocking, IOException, Unit]

    Permalink

    Create a directory.

    Create a directory. If the operation failed, an error will be emitted

    path

    absolute path of the directory

  5. abstract def readFile(path: String, chunkSize: Int = 2048): ZStream[Blocking, IOException, Byte]

    Permalink

    Read a file by using stream.

    Read a file by using stream. If the operation failed, an error will be emitted

    path

    absolute path of a file

    chunkSize

    default chunk size is 2048 bytes

  6. abstract def rm(path: String): ZIO[Blocking, IOException, Unit]

    Permalink

    Delete a file on a server.

    Delete a file on a server. If the operation failed, an error will be emitted

    path

    absolute path of the file

  7. abstract def rmdir(path: String): ZIO[Blocking, IOException, Unit]

    Permalink

    Delete a directory.

    Delete a directory. If the operation failed, an error will be emitted

    path

    absolute path of the directory

  8. abstract def stat(path: String): ZIO[Blocking, IOException, Option[FtpResource]]

    Permalink

    Check existence of a file.

    Check existence of a file. If the file doesn't exist, the operation will succeed by returning an empty ftp resource If the operation failed an error will be emitted

    path

    absolute path of the file

  9. abstract def upload[R <: Blocking](path: String, source: ZStream[R, Throwable, Byte]): ZIO[R, IOException, Unit]

    Permalink

    Save a data stream.

    Save a data stream. If the operation failed, an error will be emitted

    R

    environment of the specified stream source, required to extend Blocking

    path

    absolute path of file to store

    source

    data stream to store

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped