nrepl

pez 2024-03-22T08:00:02.609559Z

Is there a way we can interrupt evaluations for ClojureScript?

2024-03-22T18:31:37.463099Z

I don't think it is possible because of the single thread aspect of JS. What I did to make interruptible tasks in FlowStorm when processing big collections is batch processing with a (js/setTimeout 0 process-next-batch) so between batches you give the chance to some other code to set a flag to cut the process