From e9c559a1ebe6c77567dc05dedb82dfa6ce77bede Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Wed, 3 Apr 2024 13:47:39 -0500 Subject: [PATCH] add missing imports for classes used in type hints --- src/promesa/exec/bulkhead.clj | 3 ++- src/promesa/impl.cljc | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/promesa/exec/bulkhead.clj b/src/promesa/exec/bulkhead.clj index 3d47fae..798603b 100644 --- a/src/promesa/exec/bulkhead.clj +++ b/src/promesa/exec/bulkhead.clj @@ -20,7 +20,8 @@ java.util.concurrent.Executor java.util.concurrent.LinkedBlockingQueue java.util.concurrent.Semaphore - java.util.concurrent.atomic.AtomicLong)) + java.util.concurrent.atomic.AtomicLong + java.util.function.Supplier)) (set! *warn-on-reflection* true) ;; (set! *unchecked-math* :warn-on-boxed) diff --git a/src/promesa/impl.cljc b/src/promesa/impl.cljc index 56a7af6..b4d6eba 100644 --- a/src/promesa/impl.cljc +++ b/src/promesa/impl.cljc @@ -25,6 +25,8 @@ java.util.concurrent.Future java.util.concurrent.TimeUnit java.util.concurrent.TimeoutException + java.util.function.BiConsumer + java.util.function.BiFunction java.util.function.Function java.util.function.Supplier)))