This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class Sms(val phone: String, val text: String) | |
object SmsBus { | |
private val bus by lazy { PublishSubject.create<Sms>() } | |
fun incomingSms(): Observable<Sms> = bus | |
fun postSms(sms: Sms) = bus.onNext(sms) | |
} | |