Packages

object ApiStreaming

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

Type Members

  1. case class IndexRange(fromInclusive: Long, toInclusive: Long) extends Product with Serializable

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. def asyncIndexPoller[T](minDelayForSameIndex: FiniteDuration = FiniteDuration(25, "millis"), maxDelayForSameIndex: FiniteDuration = FiniteDuration(1000, "millis"), increaseDelayForSameIndex: (FiniteDuration) => FiniteDuration = _ * 2)(poll: () => Future[T])(implicit executionContext: ExecutionContext): Source[T, NotUsed]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def pagedRangeQueryStream[T](rangeQueryWithLimit: (IndexRange) => Future[Vector[T]])(indexExtractor: (T) => Long)(indexRange: IndexRange): Source[T, NotUsed]

    Queries a full range by issuing subsequent limited queries.

    Queries a full range by issuing subsequent limited queries.

    rangeQueryWithLimit

    Function to issue a range query with limit. Results are expected to be returned in index order.

    indexExtractor

    to get back the index of one result.

    indexRange

    the complete range.

    returns

    Results for the complete range in index order.

  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def tailingInclusiveIndexRanges[T](indexRange: IndexRange)(indexSource: Source[Long, T]): Source[IndexRange, T]

    Renders a stream of inclusive index from-to pairs, which are mutually exclusive, and covering the complete range of (fromInclusive, toInclusive).

    Renders a stream of inclusive index from-to pairs, which are mutually exclusive, and covering the complete range of (fromInclusive, toInclusive). The stream starts only after the indexSource passes by fromInclusive.

    indexRange

    the inclusive complete range.

    indexSource

    Source of strictly monotonically increasing indexes

    returns

    a sequence of ranges following precisely each other monotonically. The first range will start with fromInclusive and the last range will end with toInclusive.

  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped