missionary

2020-10-04T19:46:57.002700Z

Anyone have an example of how I could work with an incoming websocket stream as a missionary flow by implementing a message handler passed to the websocket constructor?

2020-10-04T19:48:31.004Z

ie

(make-websocket 
  :on-receive 
  (fn [msg] 
    ;;..how to put msg on a flow?
  ))

2020-10-04T20:12:47.009300Z

if your ws implementation is non backpressured and callback based, try observe

2020-10-04T20:17:30.009500Z

Thank you, I'll give that a shot