Skip to content
Snippets Groups Projects
Commit 49021fd4 authored by Jens Nolte's avatar Jens Nolte
Browse files

Reorder Awaitable export list

parent 8b263600
No related branches found
No related tags found
No related merge requests found
module Quasar.Awaitable (
-- * Awaitable
IsAwaitable(..),
MonadQuerySTM(querySTM),
Awaitable,
awaitIO,
tryAwaitIO,
peekAwaitable,
Awaitable,
successfulAwaitable,
failedAwaitable,
completedAwaitable,
......@@ -31,6 +30,7 @@ module Quasar.Awaitable (
putAsyncVarEitherSTM_,
-- * Implementation helpers
MonadQuerySTM(querySTM),
cacheAwaitableDefaultImplementation,
) where
......@@ -114,6 +114,7 @@ instance Alternative Awaitable where
instance MonadPlus Awaitable
newtype FnAwaitable r = FnAwaitable (forall m. (MonadQuerySTM m) => m (Either SomeException r))
instance IsAwaitable r (FnAwaitable r) where
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment