chrome.events.MappedEventSource.scala Maven / Gradle / Ivy
package chrome.events
class MappedEventSource[A, B](source: EventSource[A], map: A => B)
extends EventSource[B] {
def listen(fn: B => Unit): Subscription = {
source.listen(map.andThen(fn))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy