Packages

case object NoChange extends Pulse[Nothing] with Product with Serializable

Pulse indicating no change

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoChange
  2. Serializable
  3. Product
  4. Equals
  5. Pulse
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. def collect[U](pf: PartialFunction[Nothing, U]): Pulse[U]
    Definition Classes
    Pulse
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def filter(p: (Nothing) => Boolean): Pulse[Nothing]

    If the pulse indicates a change: Applies a filter function to the updated value of the pulse.

    If the pulse indicates a change: Applies a filter function to the updated value of the pulse. Based on the filter function, the updated value is retained or an empty pulse is returned. If the pulse doesn't indicate a change: Returns an empty pulse indicating no change.

    p

    Filter function to be applied to the updated pulse value

    returns

    A pulse with the updated pulse value if the filter function returns true, an empty pulse otherwise

    Definition Classes
    Pulse
  10. def flatMap[Q](f: (Nothing) => Pulse[Q]): Pulse[Q]

    If the pulse indicates a change: Applies a function to the updated value.

    If the pulse indicates a change: Applies a function to the updated value. The function has to return a new pulse that is returned by this function. If the pulse doesn't indicate a change: Returns an empty pulse indicating no change.

    Q

    Value type of the pulse returned by the applied function

    f

    Function to be applied on the updated pulse value

    returns

    Pulse returned by the applied function or an empty pulse if there is no updated value

    Definition Classes
    Pulse
  11. def get: Nothing
    Definition Classes
    Pulse
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def getOrElse[U >: Nothing](default: U): U
    Definition Classes
    Pulse
  14. final def isChange: Boolean

    Checks if the pulse indicates a change

    Checks if the pulse indicates a change

    returns

    True if the pulse indicates a change, false if not

    Definition Classes
    Pulse
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def map[Q](f: (Nothing) => Q): Pulse[Q]

    If the pulse indicates a change: Applies a function to the updated value of the pulse and returns a new pulse indicating a change to this updated value.

    If the pulse indicates a change: Applies a function to the updated value of the pulse and returns a new pulse indicating a change to this updated value. If the pulse doesn't indicate a change: Returns an empty pulse indicating no change.

    Q

    Result type of the applied function

    f

    Function to be applied on the updated pulse value

    returns

    Pulse indicating the update performed by the applied function or an empty pulse if there is no updated value

    Definition Classes
    Pulse
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. def productElementName(n: Int): String
    Definition Classes
    Product
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toOption: Option[Nothing]
    Definition Classes
    Pulse
  24. def toOptionTry: Option[Try[Nothing]]

    converts the pulse to an option of try

    converts the pulse to an option of try

    Definition Classes
    Pulse
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. 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 Serializable

Inherited from Product

Inherited from Equals

Inherited from Pulse[Nothing]

Inherited from AnyRef

Inherited from Any

Ungrouped