Package

rescala.extra

incremental

Permalink

package incremental

Visibility
  1. Public
  2. All

Type Members

  1. case class Addition[T](v: T) extends Delta[T] with Product with Serializable

    Permalink

    T

    type of the value the Delta holds

    v

    the value that is added

  2. sealed trait Delta[+T] extends AnyRef

    Permalink

    Deltas represent a change that will happen on reactive sequences.

    Deltas represent a change that will happen on reactive sequences. This could be adding, removing or no change at all

    T

    type of the value the Delta holds

  3. trait IncrementalBundle extends AnyRef

    Permalink
  4. case class NoChange[T]() extends Delta[T] with Product with Serializable

    Permalink

    T

    type of the value the Delta holds

  5. case class Removal[T](v: T) extends Delta[T] with Product with Serializable

    Permalink

    T

    type of the value the Delta holds

    v

    the value that is removed

Value Members

  1. object Delta

    Permalink

    Object representing the Delta trait

  2. object IncrementalApi extends IncrementalBundle with RescalaInterface with Synchron

    Permalink
  3. object ReCollectionsExceptions

    Permalink

Ungrouped