sealed trait Pulse[+P] extends AnyRef
Pulse that stores a current value and can also indicate a potentially change to an updated value. A pulse may indicate that no current value has been set yet but updates must always contain a value.
- P
Stored value type of the Pulse
- Alphabetic
- By Inheritance
- Pulse
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
- def collect[U](pf: PartialFunction[P, U]): Pulse[U]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
filter(p: (P) ⇒ Boolean): Pulse[P]
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
-
def
flatMap[Q](f: (P) ⇒ 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
- def get: P
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def getOrElse[U >: P](default: U): U
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
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
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[Q](f: (P) ⇒ 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
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def toOption: Option[P]
-
def
toOptionTry: Option[Try[P]]
converts the pulse to an option of try
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )