Object/Class

zio.stream

ZSink

Related Docs: class ZSink | package stream

Permalink

object ZSink extends ZSinkPlatformSpecificConstructors

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

Type Members

  1. final class EnvironmentWithPartiallyApplied[R] extends AnyVal

    Permalink
  2. final class EnvironmentWithSinkPartiallyApplied[R] extends AnyVal

    Permalink
  3. final class EnvironmentWithZIOPartiallyApplied[R] extends AnyVal

    Permalink
  4. final class ServiceAtPartiallyApplied[Service] extends AnyVal

    Permalink
  5. final class ServiceWithPartiallyApplied[Service] extends AnyVal

    Permalink
  6. final class ServiceWithSinkPartiallyApplied[Service] extends AnyVal

    Permalink
  7. final class ServiceWithZIOPartiallyApplied[Service] extends AnyVal

    Permalink
  8. final class UnwrapScopedPartiallyApplied[R] extends AnyVal

    Permalink

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. def collectAll[In](implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, Chunk[In]]

    Permalink
  7. def collectAllN[In](n: ⇒ Int)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Chunk[In]]

    Permalink

    A sink that collects first n elements into a chunk.

    A sink that collects first n elements into a chunk. Note that the chunk is preallocated and must fit in memory.

  8. def collectAllToMap[In, K](key: (In) ⇒ K)(f: (In, In) ⇒ In)(implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, Map[K, In]]

    Permalink

    A sink that collects all of its inputs into a map.

    A sink that collects all of its inputs into a map. The keys are extracted from inputs using the keying function key; if multiple inputs use the same key, they are merged using the f function.

  9. def collectAllToMapN[Err, In, K](n: ⇒ Long)(key: (In) ⇒ K)(f: (In, In) ⇒ In)(implicit trace: Trace): ZSink[Any, Err, In, In, Map[K, In]]

    Permalink

    A sink that collects first n keys into a map.

    A sink that collects first n keys into a map. The keys are calculated from inputs using the keying function key; if multiple inputs use the the same key, they are merged using the f function.

  10. def collectAllToSet[In](implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, Set[In]]

    Permalink

    A sink that collects all of its inputs into a set.

  11. def collectAllToSetN[In](n: ⇒ Long)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Set[In]]

    Permalink

    A sink that collects first n distinct inputs into a set.

  12. def collectAllUntil[In](p: (In) ⇒ Boolean)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Chunk[In]]

    Permalink

    Accumulates incoming elements into a chunk until predicate p is satisfied.

  13. def collectAllUntilZIO[Env, Err, In](p: (In) ⇒ ZIO[Env, Err, Boolean])(implicit trace: Trace): ZSink[Env, Err, In, In, Chunk[In]]

    Permalink

    Accumulates incoming elements into a chunk until effectful predicate p is satisfied.

  14. def collectAllWhile[In](p: (In) ⇒ Boolean)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Chunk[In]]

    Permalink

    Accumulates incoming elements into a chunk as long as they verify predicate p.

  15. def collectAllWhileZIO[Env, Err, In](p: (In) ⇒ ZIO[Env, Err, Boolean])(implicit trace: Trace): ZSink[Env, Err, In, In, Chunk[In]]

    Permalink

    Accumulates incoming elements into a chunk as long as they verify effectful predicate p.

  16. def count(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Long]

    Permalink

    A sink that counts the number of elements fed to it.

  17. def die(e: ⇒ Throwable)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Nothing]

    Permalink

    Creates a sink halting with the specified Throwable.

  18. def dieMessage(m: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Nothing]

    Permalink

    Creates a sink halting with the specified message, wrapped in a RuntimeException.

  19. def drain(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    A sink that ignores its inputs.

  20. def dropUntil[In](p: (In) ⇒ Boolean)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Any]

    Permalink

    Drops incoming elements until the predicate p is satisfied.

  21. def dropUntilZIO[R, InErr, In](p: (In) ⇒ ZIO[R, InErr, Boolean])(implicit trace: Trace): ZSink[R, InErr, In, In, Any]

    Permalink

    Drops incoming elements until the effectful predicate p is satisfied.

  22. def dropWhile[In](p: (In) ⇒ Boolean)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Any]

    Permalink

    Drops incoming elements as long as the predicate p is satisfied.

  23. def dropWhileZIO[R, InErr, In](p: (In) ⇒ ZIO[R, InErr, Boolean])(implicit trace: Trace): ZSink[R, InErr, In, In, Any]

    Permalink

    Drops incoming elements as long as the effectful predicate p is satisfied.

  24. def environment[R](implicit trace: Trace): ZSink[R, Nothing, Any, Nothing, ZEnvironment[R]]

    Permalink

    Accesses the whole environment of the sink.

  25. def environmentWith[R]: EnvironmentWithPartiallyApplied[R]

    Permalink

    Accesses the environment of the sink.

  26. def environmentWithSink[R]: EnvironmentWithSinkPartiallyApplied[R]

    Permalink

    Accesses the environment of the sink in the context of a sink.

  27. def environmentWithZIO[R]: EnvironmentWithZIOPartiallyApplied[R]

    Permalink

    Accesses the environment of the sink in the context of an effect.

  28. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def fail[E](e: ⇒ E)(implicit trace: Trace): ZSink[Any, E, Any, Nothing, Nothing]

    Permalink

    A sink that always fails with the specified error.

  31. def failCause[E](e: ⇒ Cause[E])(implicit trace: Trace): ZSink[Any, E, Any, Nothing, Nothing]

    Permalink

    Creates a sink halting with a specified cause.

  32. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. def fold[In, S](z: ⇒ S)(contFn: (S) ⇒ Boolean)(f: (S, In) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, In, S]

    Permalink

    A sink that folds its inputs with the provided function, termination predicate and initial state.

  34. def foldChunks[In, S](z: ⇒ S)(contFn: (S) ⇒ Boolean)(f: (S, Chunk[In]) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, S]

    Permalink

    A sink that folds its input chunks with the provided function, termination predicate and initial state.

    A sink that folds its input chunks with the provided function, termination predicate and initial state. contFn condition is checked only for the initial value and at the end of processing of each chunk. f and contFn must preserve chunking-invariance.

  35. def foldChunksZIO[Env, Err, In, S](z: ⇒ S)(contFn: (S) ⇒ Boolean)(f: (S, Chunk[In]) ⇒ ZIO[Env, Err, S])(implicit trace: Trace): ZSink[Env, Err, In, In, S]

    Permalink

    A sink that effectfully folds its input chunks with the provided function, termination predicate and initial state.

    A sink that effectfully folds its input chunks with the provided function, termination predicate and initial state. contFn condition is checked only for the initial value and at the end of processing of each chunk. f and contFn must preserve chunking-invariance.

  36. def foldLeft[In, S](z: ⇒ S)(f: (S, In) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, S]

    Permalink

    A sink that folds its inputs with the provided function and initial state.

  37. def foldLeftChunks[In, S](z: ⇒ S)(f: (S, Chunk[In]) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, Nothing, S]

    Permalink

    A sink that folds its input chunks with the provided function and initial state.

    A sink that folds its input chunks with the provided function and initial state. f must preserve chunking-invariance.

  38. def foldLeftChunksZIO[R, Err, In, S](z: ⇒ S)(f: (S, Chunk[In]) ⇒ ZIO[R, Err, S])(implicit trace: Trace): ZSink[R, Err, In, Nothing, S]

    Permalink

    A sink that effectfully folds its input chunks with the provided function and initial state.

    A sink that effectfully folds its input chunks with the provided function and initial state. f must preserve chunking-invariance.

  39. def foldLeftZIO[R, Err, In, S](z: ⇒ S)(f: (S, In) ⇒ ZIO[R, Err, S])(implicit trace: Trace): ZSink[R, Err, In, In, S]

    Permalink

    A sink that effectfully folds its inputs with the provided function and initial state.

  40. def foldUntil[In, S](z: ⇒ S, max: ⇒ Long)(f: (S, In) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, In, S]

    Permalink

    Creates a sink that folds elements of type In into a structure of type S until max elements have been folded.

    Creates a sink that folds elements of type In into a structure of type S until max elements have been folded.

    Like foldWeighted, but with a constant cost function of 1.

  41. def foldUntilZIO[Env, Err, In, S](z: ⇒ S, max: ⇒ Long)(f: (S, In) ⇒ ZIO[Env, Err, S])(implicit trace: Trace): ZSink[Env, Err, In, In, S]

    Permalink

    Creates a sink that effectfully folds elements of type In into a structure of type S until max elements have been folded.

    Creates a sink that effectfully folds elements of type In into a structure of type S until max elements have been folded.

    Like foldWeightedZIO, but with a constant cost function of 1.

  42. def foldWeighted[In, S](z: ⇒ S)(costFn: (S, In) ⇒ Long, max: ⇒ Long)(f: (S, In) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, In, S]

    Permalink

    Creates a sink that folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Creates a sink that folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Note

    Elements that have an individual cost larger than max will force the sink to cross the max cost. See foldWeightedDecompose for a variant that can handle these cases.

  43. def foldWeightedDecompose[In, S](z: ⇒ S)(costFn: (S, In) ⇒ Long, max: ⇒ Long, decompose: (In) ⇒ Chunk[In])(f: (S, In) ⇒ S)(implicit trace: Trace): ZSink[Any, Nothing, In, In, S]

    Permalink

    Creates a sink that folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Creates a sink that folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    The decompose function will be used for decomposing elements that cause an S aggregate to cross max into smaller elements. For example:

    Stream(1, 5, 1)
      .transduce(
        ZSink
          .foldWeightedDecompose(List[Int]())((i: Int) => i.toLong, 4,
            (i: Int) => Chunk(i - 1, 1)) { (acc, el) =>
            el :: acc
          }
          .map(_.reverse)
      )
      .runCollect

    The stream would emit the elements List(1), List(4), List(1, 1).

    Be vigilant with this function, it has to generate "simpler" values or the fold may never end. A value is considered indivisible if decompose yields the empty chunk or a single-valued chunk. In these cases, there is no other choice than to yield a value that will cross the threshold.

    The foldWeightedDecomposeZIO allows the decompose function to return a ZIO value, and consequently it allows the sink to fail.

  44. def foldWeightedDecomposeZIO[Env, Err, In, S](z: ⇒ S)(costFn: (S, In) ⇒ ZIO[Env, Err, Long], max: ⇒ Long, decompose: (In) ⇒ ZIO[Env, Err, Chunk[In]])(f: (S, In) ⇒ ZIO[Env, Err, S])(implicit trace: Trace): ZSink[Env, Err, In, In, S]

    Permalink

    Creates a sink that effectfully folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Creates a sink that effectfully folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    The decompose function will be used for decomposing elements that cause an S aggregate to cross max into smaller elements. Be vigilant with this function, it has to generate "simpler" values or the fold may never end. A value is considered indivisible if decompose yields the empty chunk or a single-valued chunk. In these cases, there is no other choice than to yield a value that will cross the threshold.

    See foldWeightedDecompose for an example.

  45. def foldWeightedZIO[Env, Err, In, S](z: ⇒ S)(costFn: (S, In) ⇒ ZIO[Env, Err, Long], max: Long)(f: (S, In) ⇒ ZIO[Env, Err, S])(implicit trace: Trace): ZSink[Env, Err, In, In, S]

    Permalink

    Creates a sink that effectfully folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Creates a sink that effectfully folds elements of type In into a structure of type S, until max worth of elements (determined by the costFn) have been folded.

    Note

    Elements that have an individual cost larger than max will force the sink to cross the max cost. See foldWeightedDecomposeZIO for a variant that can handle these cases.

  46. def foldZIO[Env, Err, In, S](z: ⇒ S)(contFn: (S) ⇒ Boolean)(f: (S, In) ⇒ ZIO[Env, Err, S])(implicit trace: Trace): ZSink[Env, Err, In, In, S]

    Permalink

    A sink that effectfully folds its inputs with the provided function, termination predicate and initial state.

  47. def foreach[R, Err, In](f: (In) ⇒ ZIO[R, Err, Any])(implicit trace: Trace): ZSink[R, Err, In, Nothing, Unit]

    Permalink

    A sink that executes the provided effectful function for every element fed to it.

  48. def foreachChunk[R, Err, In](f: (Chunk[In]) ⇒ ZIO[R, Err, Any])(implicit trace: Trace): ZSink[R, Err, In, Nothing, Unit]

    Permalink

    A sink that executes the provided effectful function for every chunk fed to it.

  49. def foreachChunkWhile[R, Err, In](f: (Chunk[In]) ⇒ ZIO[R, Err, Boolean])(implicit trace: Trace): ZSink[R, Err, In, In, Unit]

    Permalink

    A sink that executes the provided effectful function for every chunk fed to it until f evaluates to false.

  50. def foreachWhile[R, Err, In](f: (In) ⇒ ZIO[R, Err, Boolean])(implicit trace: Trace): ZSink[R, Err, In, In, Unit]

    Permalink

    A sink that executes the provided effectful function for every element fed to it until f evaluates to false.

  51. def fromChannel[R, E, In, L, Z](channel: ZChannel[R, ZNothing, Chunk[In], Any, E, Chunk[L], Z]): ZSink[R, E, In, L, Z]

    Permalink

    Creates a sink from a zio.stream.ZChannel

  52. def fromHub[I](hub: ⇒ Hub[I])(implicit trace: Trace): ZSink[Any, Nothing, I, Nothing, Unit]

    Permalink

    Create a sink which publishes each element to the specified hub.

  53. def fromHubWithShutdown[I](hub: ⇒ Hub[I])(implicit trace: Trace): ZSink[Any, Nothing, I, Nothing, Unit]

    Permalink

    Create a sink which publishes each element to the specified hub.

    Create a sink which publishes each element to the specified hub. The hub will be shutdown once the stream is closed.

  54. def fromPush[R, E, I, L, Z](push: ZIO[Scope with R, Nothing, (Option[Chunk[I]]) ⇒ ZIO[R, (Either[E, Z], Chunk[L]), Unit]])(implicit trace: Trace): ZSink[R, E, I, L, Z]

    Permalink

    Creates a sink from a chunk processing function.

  55. def fromQueue[I](queue: ⇒ Enqueue[I])(implicit trace: Trace): ZSink[Any, Nothing, I, Nothing, Unit]

    Permalink

    Create a sink which enqueues each element into the specified queue.

  56. def fromQueueWithShutdown[I](queue: ⇒ Enqueue[I])(implicit trace: Trace): ZSink[Any, Nothing, I, Nothing, Unit]

    Permalink

    Create a sink which enqueues each element into the specified queue.

    Create a sink which enqueues each element into the specified queue. The queue will be shutdown once the stream is closed.

  57. def fromZIO[R, E, Z](b: ⇒ ZIO[R, E, Z])(implicit trace: Trace): ZSink[R, E, Any, Nothing, Z]

    Permalink

    Creates a single-value sink produced from an effect

  58. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  60. def head[In](implicit trace: Trace): ZSink[Any, Nothing, In, In, Option[In]]

    Permalink

    Creates a sink containing the first value.

  61. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  62. def last[In](implicit trace: Trace): ZSink[Any, Nothing, In, In, Option[In]]

    Permalink

    Creates a sink containing the last value.

  63. def leftover[L](c: ⇒ Chunk[L])(implicit trace: Trace): ZSink[Any, Nothing, Any, L, Unit]

    Permalink

    Creates a sink that does not consume any input but provides the given chunk as its leftovers

  64. def log(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the current log level.

  65. def logAnnotate[R, E, In, L, Z](annotations: ⇒ Set[LogAnnotation])(sink: ZSink[R, E, In, L, Z])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Annotates each log in streams composed after this with the specified log annotation.

  66. def logAnnotate[R, E, In, L, Z](annotation: ⇒ LogAnnotation, annotations: LogAnnotation*)(sink: ZSink[R, E, In, L, Z])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Annotates each log in streams composed after this with the specified log annotation.

  67. def logAnnotate[R, E, In, L, Z](key: ⇒ String, value: ⇒ String)(sink: ZSink[R, E, In, L, Z])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Annotates each log in streams composed after this with the specified log annotation.

  68. def logAnnotations(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Map[String, String]]

    Permalink

    Retrieves the log annotations associated with the current scope.

  69. def logDebug(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the debug log level.

  70. def logError(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the error log level.

  71. def logErrorCause(cause: ⇒ Cause[Any])(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified cause as an error.

  72. def logFatal(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the fatal log level.

  73. def logInfo(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the informational log level.

  74. def logLevel[R, E, In, L, Z](level: LogLevel)(sink: ZSink[R, E, In, L, Z])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Sets the log level for streams composed after this.

  75. def logSpan[R, E, In, L, Z](label: ⇒ String)(sink: ZSink[R, E, In, L, Z])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Adjusts the label for the logging span for streams composed after this.

  76. def logTrace(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the trace log level.

  77. def logWarning(message: ⇒ String)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Unit]

    Permalink

    Logs the specified message at the warning log level.

  78. def mkString(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, String]

    Permalink
  79. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  80. def never(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Nothing]

    Permalink
  81. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  83. def service[Z](implicit arg0: Tag[Z], trace: Trace): ZSink[Z, Nothing, Any, Nothing, Z]

    Permalink

    Accesses the specified service in the environment of the effect.

  84. def serviceAt[Service]: ZStream.ServiceAtPartiallyApplied[Service]

    Permalink

    Accesses the service corresponding to the specified key in the environment.

  85. def serviceWith[Service]: ServiceWithPartiallyApplied[Service]

    Permalink

    Accesses the specified service in the environment of the sink.

  86. def serviceWithSink[Service]: ServiceWithSinkPartiallyApplied[Service]

    Permalink

    Accesses the specified service in the environment of the sink in the context of a sink.

  87. def serviceWithZIO[Service]: ServiceWithZIOPartiallyApplied[Service]

    Permalink

    Accesses the specified service in the environment of the sink in the context of an effect.

  88. def succeed[Z](z: ⇒ Z)(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, Z]

    Permalink

    A sink that immediately ends with the specified value.

  89. def sum[A](implicit A: Numeric[A], trace: Trace): ZSink[Any, Nothing, A, Nothing, A]

    Permalink

    A sink that sums incoming numeric values.

  90. def suspend[Env, E, In, Leftover, Done](sink: ⇒ ZSink[Env, E, In, Leftover, Done])(implicit trace: Trace): ZSink[Env, E, In, Leftover, Done]

    Permalink

    Returns a lazily constructed sink that may require effects for its creation.

  91. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  92. def take[In](n: Int)(implicit trace: Trace): ZSink[Any, Nothing, In, In, Chunk[In]]

    Permalink

    A sink that takes the specified number of values.

  93. def timed(implicit trace: Trace): ZSink[Any, Nothing, Any, Nothing, zio.Duration]

    Permalink
  94. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  95. def unwrap[R, E, In, L, Z](zio: ⇒ ZIO[R, E, ZSink[R, E, In, L, Z]])(implicit trace: Trace): ZSink[R, E, In, L, Z]

    Permalink

    Creates a sink produced from an effect.

  96. def unwrapScoped[R]: UnwrapScopedPartiallyApplied[R]

    Permalink

    Creates a sink produced from a scoped effect.

  97. final def wait(): Unit

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

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

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

Inherited from ZSinkPlatformSpecificConstructors

Inherited from AnyRef

Inherited from Any

Ungrouped