Packages

t

zio

JsonPackagePlatformSpecific

trait JsonPackagePlatformSpecific extends AnyRef

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

Value Members

  1. def readJsonAs(url: URL): ZStream[Any, Throwable, Json]
  2. def readJsonAs(path: String): ZStream[Any, Throwable, Json]
  3. def readJsonAs(path: Path): ZStream[Any, Throwable, Json]
  4. def readJsonAs(file: File): ZStream[Any, Throwable, Json]
  5. def readJsonLinesAs[A](url: URL)(implicit arg0: JsonDecoder[A]): ZStream[Any, Throwable, A]
  6. def readJsonLinesAs[A](path: String)(implicit arg0: JsonDecoder[A]): ZStream[Any, Throwable, A]
  7. def readJsonLinesAs[A](path: Path)(implicit arg0: JsonDecoder[A]): ZStream[Any, Throwable, A]
  8. def readJsonLinesAs[A](file: File)(implicit arg0: JsonDecoder[A]): ZStream[Any, Throwable, A]
  9. def writeJsonLines[R](path: String, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
  10. def writeJsonLines[R](path: Path, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
  11. def writeJsonLines[R](file: File, stream: ZStream[R, Throwable, Json]): RIO[R, Unit]
  12. def writeJsonLinesAs[R, A](path: String, stream: ZStream[R, Throwable, A])(implicit arg0: JsonEncoder[A]): RIO[R, Unit]
  13. def writeJsonLinesAs[R, A](path: Path, stream: ZStream[R, Throwable, A])(implicit arg0: JsonEncoder[A]): RIO[R, Unit]
  14. def writeJsonLinesAs[R, A](file: File, stream: ZStream[R, Throwable, A])(implicit arg0: JsonEncoder[A]): RIO[R, Unit]