Packages

object Sink

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

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. final def await[A]: Sink[Unit, Nothing, A, A]

    see ZSink.await

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def collectAll[A]: Sink[Nothing, Nothing, A, List[A]]

    see ZSink.collectAll

  8. final def collectAllN[A](n: Long): ZSink[Any, Nothing, A, A, List[A]]

    see ZSink.collectAllN

  9. final def collectAllToMap[K, A](key: (A) => K): ZSink[Any, Nothing, Nothing, A, Map[K, A]]

    see ZSink.collectAllToMap

  10. final def collectAllToMapN[K, A](n: Long)(key: (A) => K): ZSink[Any, Nothing, A, A, Map[K, A]]

    see ZSink.collectAllToMapN

  11. final def collectAllToSet[A]: ZSink[Any, Nothing, Nothing, A, Set[A]]

    see ZSink.collectAllToSet

  12. final def collectAllToSetN[A](n: Long): ZSink[Any, Nothing, A, A, Set[A]]

    see ZSink.collectAllToSetN

  13. final def collectAllWhile[A](p: (A) => Boolean): Sink[Nothing, A, A, List[A]]

    see ZSink.collectAllWhile

  14. final def collectAllWhileM[E, A](p: (A) => IO[E, Boolean]): Sink[E, A, A, List[A]]

    see ZSink.collectAllWhileM

  15. final def die(e: Throwable): Sink[Nothing, Nothing, Any, Nothing]

    see ZSink.die

  16. final def dieMessage(m: String): Sink[Nothing, Nothing, Any, Nothing]

    see ZSink.dieMessage

  17. final def drain: Sink[Nothing, Nothing, Any, Unit]

    see ZSink.drain

  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. final def fail[E](e: E): Sink[E, Nothing, Any, Nothing]

    see ZSink.fail

  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  22. final def fold[A0, A, S](z: S)(f: (S, A) => Step[S, A0]): Sink[Nothing, A0, A, S]

    see ZSink.fold

  23. final def foldLeft[A, S](z: S)(f: (S, A) => S): Sink[Nothing, Nothing, A, S]

    see ZSink.foldLeft

  24. final def foldM[E, A0, A, S](z: S)(f: (S, A) => IO[E, Step[S, A0]]): Sink[E, A0, A, S]

    see ZSink.foldM

  25. final def foldUntil[S, A](z: S, max: Long)(f: (S, A) => S): Sink[Nothing, A, A, S]

    see ZSink.foldUntil

  26. final def foldUntilM[E, S, A](z: S, max: Long)(f: (S, A) => IO[E, S]): Sink[E, A, A, S]

    see ZSink.foldUntilM

  27. final def foldWeighted[A, S](z: S)(costFn: (A) => Long, max: Long)(f: (S, A) => S): Sink[Nothing, A, A, S]

    see ZSink.foldWeighted

  28. final def foldWeightedM[E, E1 >: E, A, S](z: S)(costFn: (A) => IO[E, Long], max: Long)(f: (S, A) => IO[E1, S]): Sink[E1, A, A, S]

    see ZSink.foldWeightedM

  29. final def fromEffect[E, B](b: => IO[E, B]): Sink[E, Nothing, Any, B]

    see ZSink.fromEffect

  30. final def fromFunction[A, B](f: (A) => B): Sink[Unit, Nothing, A, B]

    see ZSink.fromFunction

  31. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. final def halt[E](e: Cause[E]): Sink[E, Nothing, Any, Nothing]

    see ZSink.halt

  33. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. final def identity[A]: Sink[Unit, Nothing, A, A]

    see ZSink.identity

  35. final def ignoreWhile[A](p: (A) => Boolean): Sink[Nothing, A, A, Unit]

    see ZSink.ignoreWhile

  36. final def ignoreWhileM[E, A](p: (A) => IO[E, Boolean]): Sink[E, A, A, Unit]

    see ZSink.ignoreWhileM

  37. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. final def pull1[E, A0, A, B](end: IO[E, B])(input: (A) => Sink[E, A0, A, B]): Sink[E, A0, A, B]

    see ZSink.pull1

  42. final def read1[E, A](e: (Option[A]) => E)(p: (A) => Boolean): Sink[E, A, A, A]

    see ZSink.read1

  43. final val splitLines: Sink[Nothing, String, String, Chunk[String]]

    see ZSink.splitLines

  44. final val splitLinesChunk: Sink[Nothing, Chunk[String], Chunk[String], Chunk[String]]

    see ZSink.splitLinesChunk

  45. final def succeed[B](b: B): Sink[Nothing, Nothing, Any, B]

    see ZSink.succeed

  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. final def throttleEnforce[A](units: Long, duration: Duration, burst: Long = 0)(costFn: (A) => Long): ZManaged[Clock, Nothing, ZSink[Clock, Nothing, Nothing, A, Option[A]]]

    see ZSink.throttleEnforce

  48. final def throttleEnforceM[E, A](units: Long, duration: Duration, burst: Long = 0)(costFn: (A) => IO[E, Long]): ZManaged[Clock, E, ZSink[Clock, E, Nothing, A, Option[A]]]

    see ZSink.throttleEnforceM

  49. final def throttleShape[A](units: Long, duration: Duration, burst: Long = 0)(costFn: (A) => Long): ZManaged[Clock, Nothing, ZSink[Clock, Nothing, Nothing, A, A]]

    see ZSink.throttleShape

  50. final def throttleShapeM[E, A](units: Long, duration: Duration, burst: Long = 0)(costFn: (A) => IO[E, Long]): ZManaged[Clock, E, ZSink[Clock, E, Nothing, A, A]]

    see ZSink.throttleShapeM

  51. def toString(): String
    Definition Classes
    AnyRef → Any
  52. final def utf8Decode(bufferSize: Int = ZStreamChunk.DefaultChunkSize): Sink[Nothing, Byte, Byte, String]

    see ZSink.utf8Decode

  53. final val utf8DecodeChunk: Sink[Nothing, Chunk[Byte], Chunk[Byte], String]

    see ZSink.utf8DecodeChunk

  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  56. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. final def succeedLazy[B](b: => B): Sink[Nothing, Nothing, Any, B]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use succeed

Inherited from AnyRef

Inherited from Any

Ungrouped