James Henderson

Results 88 comments of James Henderson

Looking into this in more detail, this message seems to be going via `handle-test-var-query-op` and then `test-var-query` - `(query/vars var-query)` is returning an empty seq (correctly, because there's no concrete...

Oh - `cider.nrepl.middleware.test/test-ns` (directly above) _would_ check for `test-ns-hook`, but it never gets called, because the `doseq` in `test-var-query` is running over an empty seq. HTH!

Hey @bbatsov, thanks for getting back to me :) Have had a bit of a bash at this today, struggling a little with the semantics. I was aiming for the...

Hey @bbatsov, cheers! I'm afraid it might be a while until I get back around to this one - we've recently had a baby so don't have a lot of...

Hey @pmonks, You're right, we do have that information, although only as part of this closure: https://github.com/jarohen/chime/blob/master/src/chime/core.clj#L88 - we'd have to change this to be shared state between the caller's...

Ah, I see. Assuming I've understood you correctly, this is less appealing, I'm afraid. Chime doesn't store any information globally at the moment - doing so would mean that Chime...

@pmonks: @jimpil is right, we don't keep track of what jobs are active. If it helps, it's the same as the underlying Java `ExecutorService` - the framework doesn't keep references...

> Based on your explanations, this raises a couple of questions: > > 1. how are the one-shot jobs not being GCed, given the references to them are discarded? If...

Migrated from #37, @jimpil ---- > > > This is kind of neat and it also kind of addresses #30, if I'm understanding the request correctly: ```clojure ScheduledFuture (cancel [_...