CopyRuntime

object CopyRuntime

Internal runtime for copying bytes from an InputStream to an OutputStream.

class Object
trait Matchable
class Any

Value members

Concrete methods

def copy[F[_]](input: InputStream, output: OutputStream)(implicit evidence$1: Sync[F]): F[Unit]

Copies all bytes from the specified InputStream to the OutputStream, executing in the blocking ExecutionContext of the implicit Runtime.

Copies all bytes from the specified InputStream to the OutputStream, executing in the blocking ExecutionContext of the implicit Runtime.

def copy[F[_]](input: Resource[F, InputStream], output: Resource[F, OutputStream])(implicit evidence$2: Sync[F]): F[Unit]

Copies all bytes from the specified binary Input to the binary Output, executing in the blocking ExecutionContext of the implicit Runtime.

Copies all bytes from the specified binary Input to the binary Output, executing in the blocking ExecutionContext of the implicit Runtime.