Binds an inbound JSON stream to this channel.
void bindInbound(Stream<String> messages) { _inboundSubscription?.cancel(); _inboundSubscription = messages.listen(addInboundJson); }