t

zio.ftp

FtpAccessors

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]

    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]

    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]

    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]

    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]

    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]

    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]

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

    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]

    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
    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. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  18. 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 AnyRef

Inherited from Any

Ungrouped