Packages

sealed abstract class Ack extends Future[Ack] with Serializable

Represents an acknowledgement of processing that a consumer sends back upstream. Useful to implement back-pressure.

Source
Ack.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ack
  2. Serializable
  3. Future
  4. Awaitable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val AsSuccess: Success[Ack]
  2. abstract def isCompleted: Boolean
    Definition Classes
    Future
  3. abstract def ready(atMost: Duration)(implicit permit: CanAwait): Ack.this.type
    Definition Classes
    Awaitable
    Annotations
    @throws(classOf[java.util.concurrent.TimeoutException]) @throws(classOf[java.lang.InterruptedException])
  4. abstract def result(atMost: Duration)(implicit permit: CanAwait): Ack
    Definition Classes
    Awaitable
    Annotations
    @throws(classOf[java.util.concurrent.TimeoutException]) @throws(classOf[java.lang.InterruptedException])
  5. abstract def value: Option[Try[Ack]]
    Definition Classes
    Future

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. def andThen[U](pf: PartialFunction[Try[Ack], U])(implicit executor: ExecutionContext): Future[Ack]
    Definition Classes
    Future
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def collect[S](pf: PartialFunction[Ack, S])(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Future
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def failed: Future[Throwable]
    Definition Classes
    Future
  11. def fallbackTo[U >: Ack](that: Future[U]): Future[U]
    Definition Classes
    Future
  12. def filter(p: (Ack) => Boolean)(implicit executor: ExecutionContext): Future[Ack]
    Definition Classes
    Future
  13. def flatMap[S](f: (Ack) => Future[S])(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Future
  14. def flatten[S](implicit ev: <:<[Ack, Future[S]]): Future[S]
    Definition Classes
    Future
  15. def foreach[U](f: (Ack) => U)(implicit executor: ExecutionContext): Unit
    Definition Classes
    Future
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def map[S](f: (Ack) => S)(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Future
  20. def mapTo[S](implicit tag: ClassTag[S]): Future[S]
    Definition Classes
    Future
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def onComplete[U](func: (Try[Ack]) => U)(implicit executor: ExecutionContext): Unit
    Definition Classes
    Ack → Future
  25. def recover[U >: Ack](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]
    Definition Classes
    Future
  26. def recoverWith[U >: Ack](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]
    Definition Classes
    Future
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def transform[S](f: (Try[Ack]) => Try[S])(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Ack → Future
  30. def transform[S](s: (Ack) => S, f: (Throwable) => Throwable)(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Future
  31. final def transformWith[S](f: (Try[Ack]) => Future[S])(implicit executor: ExecutionContext): Future[S]
    Definition Classes
    Ack → Future
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def withFilter(p: (Ack) => Boolean)(implicit executor: ExecutionContext): Future[Ack]
    Definition Classes
    Future
  36. def zip[U](that: Future[U]): Future[(Ack, U)]
    Definition Classes
    Future
  37. def zipWith[U, R](that: Future[U])(f: (Ack, U) => R)(implicit executor: ExecutionContext): Future[R]
    Definition Classes
    Future

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Future[Ack]

Inherited from Awaitable[Ack]

Inherited from AnyRef

Inherited from Any

Ungrouped