Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/clojure/core/async/flow_monitor.clj
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,11 @@
- :handlers (optional) - A map of custom Transit write handlers to use when serializing state
data to send to the frontend. These handlers should follow the format
expected by cognitect.transit/writer :handlers
- :filters (optional) - A map of {:pid state-filter-pred} which is applied to the state
for the associated pid. :default is also accepted and will be applied
to any proc that doesn't have a filter specified for the pid.
- :state-filters (optional) - A map of {:pid state-filter-pred} which is applied to the state
for the associated pid. :default is also accepted and will be applied
to any proc that doesn't have a filter specified for the pid. The
state-filter-pred is applied as (filter state-filter-pred pid-state).
The state-filter-pred isn't applied if pid-state is a string.
- :root (optional) - A vector of :pid keywords to designate the root procs in the event of
circular flows.

Expand Down