Question I hope someone can help with. I’m new to manifold and I’m trying to understand how I can attach a filter/transducer to an event bus subscription. I’m going to try to filter events based on permissions/authorization for each websocket connection. Looking at the manifold.stream/connect
function or the subscribe function I’m not seeing anything there about either transducers or it returning a manifold stream
. Thanks!
Digging a bit deeper s/connect-via
might be what I want
s/filter
?
@kingoftheknoll subscribe returns a stream which you can s/transform
with a transducer
@stijn thanks so much