```override suspend fun listen(request: Empty, res...
# kroto-plus
r
Copy code
override suspend fun listen(request: Empty, responseChannel: SendChannel<Tick>) {
        val subscription = ticker.openSubscription()

        // Forward incoming messages from the broadcast subscription to the client
        subscription.toChannel(responseChannel)
    }