EventSource

trait EventSource[+A]
class Object
trait Matchable
class Any

Value members

Abstract methods

def listen(fn: A => Unit): Subscription

Concrete methods

def filter(fn: A => Boolean): EventSource[A]
def map[B](fn: A => B): EventSource[B]
def merge[B <: C, C >: A](other: EventSource[B]): EventSource[C]