org.widok

ReadBufSet

Related Doc: package widok

trait ReadBufSet[T] extends PollBufSet[T] with DeltaBufSet[T]

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ReadBufSet
  2. DeltaBufSet
  3. Filter
  4. Map
  5. Size
  6. PollBufSet
  7. BufSet
  8. Empty
  9. Count
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val changes: ReadChannel[Delta[T]]

    Definition Classes
    DeltaBufSet

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 all(value: T): ReadChannel[Boolean]

    All elements are equal to value

    All elements are equal to value

    Definition Classes
    Filter
    See also

    any

  5. def any(value: T): ReadChannel[Boolean]

    At least one element is equal to value

    At least one element is equal to value

    Definition Classes
    Filter
    See also

    all

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def contains(value: T): ReadChannel[Boolean]

    Stream contains at least one occurrence of value.

    Stream contains at least one occurrence of value.

    Definition Classes
    Filter
    Note

    Channels: Once true, will never produce any other value.

    ,

    Buffers: When the item is removed, it will produce false.

  9. def contains$(value: T): Boolean

    Definition Classes
    PollBufSetCount
  10. def count(value: T): ReadChannel[Int]

    Count number of occurrence of value.

    Count number of occurrence of value.

    Definition Classes
    Filter
    Note

    Channels: With every matching element, the counter is increased.

    ,

    Buffers: When the element is removed, the counter is decreased.

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

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

    Definition Classes
    AnyRef → Any
  13. def exists(f: (T) ⇒ Boolean): ReadChannel[Boolean]

    Checks for existence of a value for which f is true

    Checks for existence of a value for which f is true

    Definition Classes
    Filter
    Note

    Channels: false as long as f returns false, then true

    ,

    Buffers: false as long as no row exists where f is true, then true

    See also

    forall

  14. def filter(f: (T) ⇒ Boolean): DeltaBufSet[T]

    Only include elements for which f is true

    Only include elements for which f is true

    Definition Classes
    DeltaBufSetFilter
  15. def filterNot(f: (T) ⇒ Boolean): DeltaBufSet[T]

    Definition Classes
    Filter
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def forall(f: (T) ⇒ Boolean): ReadChannel[Boolean]

    Checks whether f is true for all elements

    Checks whether f is true for all elements

    Definition Classes
    Filter
    See also

    exists

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

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

    Definition Classes
    AnyRef → Any
  20. def isEmpty: ReadChannel[Boolean]

    Definition Classes
    Size
    Note

    Partial channels: Produce true if the current value is cleared.

    ,

    Channels: Produce false with the first received value.

    ,

    Buffers: Produce a new value once a row is added or removed.

  21. def isEmpty$: Boolean

    Definition Classes
    PollBufSetEmpty
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def map[C](f: (T) ⇒ C): DeltaBufSet[C]

    Applies f on each element

    Applies f on each element

    Definition Classes
    DeltaBufSetMap
  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. def nonEmpty: ReadChannel[Boolean]

    Negation of isEmpty

    Negation of isEmpty

    Definition Classes
    Size
  26. def nonEmpty$: Boolean

    Definition Classes
    PollBufSetEmpty
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def partition(f: (T) ⇒ Boolean): (DeltaBufSet[T], DeltaBufSet[T])

    Partitions stream into two sub-stream

    Partitions stream into two sub-stream

    The left stream contains all elements for which f is true, all other elements go to the right stream.

    Definition Classes
    Filter
  30. def size: ReadChannel[Int]

    Definition Classes
    DeltaBufSetSize
    Note

    State channels: Produce when a new child is attached and if the size changes. In org.widok.Opt the size is reset if the value is cleared.

    ,

    Channels: The size is only produced in response to each received value on the channel.

    ,

    Buffers: Produce the row count once a row is added or removed.

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

    Definition Classes
    AnyRef
  32. def toSeq: ReadChannel[Seq[T]]

    Definition Classes
    PollBufSet
  33. def toSet$: Set[T]

    Definition Classes
    PollBufSetBufSet
  34. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from DeltaBufSet[T]

Inherited from Filter[DeltaBufSet, T, T]

Inherited from Map[DeltaBufSet, T]

Inherited from Size

Inherited from PollBufSet[T]

Inherited from reactive.poll.BufSet[T]

Inherited from Empty

Inherited from Count[T]

Inherited from AnyRef

Inherited from Any

Ungrouped