I have a ChatClient in my common code ( expect cla...
# reaktive
n
I have a ChatClient in my common code ( expect class currently implemented in JS) and am trying to have some kind of method to subscribe to new messages that come from the WebSocket. And to clear the subscription when the subscriber gets cleaned up. (Using stores from MVIKotlin). I am really lost at the moment, I cannot navigate the library to find what I need, this is what I am trying to achieve
Copy code
//inside jsMain actual ChatClient
    private val observable : Observable<MessageModel> = 

    actual fun subscribeToNewMessages(observer or something to subscribe to the stream of messages){
        observable.subscribe With The Observer
    }
    actual fun somehow Clear the Subscription when Neccessary()

    socket.on("received_message") { mess ->
       observable.somehow Send to observers (mess)
    }
Hopefully this makes sense
a
Hello. Based on what I understand, you can just expose an
Observable
from your ChatClient.
Copy code
val observable: Observable<MessageModel> =
    observable { emitter ->
        socket.on("received_message") { mess ->
             emitter.onNext(mess)
        }
        emitter.setCancellable { 
            // Called when the observable is unsubscribed (disposed)
            // Cancel the socket subscription using its API
            // Usually the "on" method should return a cancellation handle
        }
    }.share() // Add this operator to share the subscription between multiple subscribers, if needed