Object/Class

org.squbs.streams

BoundedOrdering

Related Docs: class BoundedOrdering | package streams

Permalink

object BoundedOrdering

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

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. def apply[A, B](maxBounded: Int, initialId: B, nextId: (B) ⇒ B, getId: (A) ⇒ B)(implicit ordering: Ordering[B]): Flow[A, A, NotUsed]

    Permalink

    Scala API

    Scala API

    Creates a Flow representing an BoundedOrdering. Orders the stream within a sliding window of n elements specified by the maxBounded parameter. Each element passing through the BoundedOrdering has an id. The elements can be ordered by the ordering function and the next expected id can be derived from the current id.

    A

    The input and output type of this stream component.

    B

    The type of the element's id.

    maxBounded

    The number of elements to wait for an out-of-order element.

    initialId

    The id of the first element getting to the BoundedOrdering.

    nextId

    Function to calculate the subsequent id from the current id.

    getId

    Function to get the id from an element.

    ordering

    Defines how the element ids are being ordered.

    returns

    The Flow representing the given BoundedOrdering

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def create[A, B](maxBounded: Int, initialId: B, nextId: Function[B, B], getId: Function[A, B], comparator: Comparator[B]): Flow[A, A, NotUsed]

    Permalink

    Java API

    Java API

    Creates a Flow representing an BoundedOrdering. Orders the stream within a sliding window of n elements specified by the maxBounded parameter. Each element passing through the BoundedOrdering has an id. The elements can be ordered by the id comparator and the next expected id can be derived from the current id.

    A

    The input and output type of this stream component.

    B

    The type of the element's id.

    maxBounded

    The number of elements to wait for an out-of-order element.

    initialId

    The id of the first element getting to the BoundedOrdering.

    nextId

    Function to calculate the subsequent id from the current id.

    getId

    Function to get the id from an element.

    comparator

    The comparator used to find the ordering of the elements' ids.

    returns

    The Flow representing the given BoundedOrdering

  8. def create[A, B <: Comparable[B]](maxBounded: Int, initialId: B, nextId: Function[B, B], getId: Function[A, B]): Flow[A, A, NotUsed]

    Permalink

    Java API

    Java API

    Creates a Flow representing an BoundedOrdering using the natural ordering of the element id. Orders the stream within a sliding window of n elements specified by the maxBounded parameter. Each element passing through the BoundedOrdering has an id. The elements can be ordered by comparing the id and the next expected id can be derived from the current id.

    A

    The input and output type of this stream component.

    B

    The type of the element's id.

    maxBounded

    The number of elements to wait for an out-of-order element.

    initialId

    The id of the first element getting to the BoundedOrdering.

    nextId

    Function to calculate the subsequent id from the current id.

    getId

    Function to get the id from an element.

    returns

    The Flow representing the given BoundedOrdering

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped