remove unused code
This commit is contained in:
parent
748addbe05
commit
9f94d2894e
1 changed files with 0 additions and 4 deletions
|
@ -8,7 +8,6 @@
|
||||||
module Database.Keys.Handle (
|
module Database.Keys.Handle (
|
||||||
DbHandle,
|
DbHandle,
|
||||||
newDbHandle,
|
newDbHandle,
|
||||||
unavailableDbHandle,
|
|
||||||
DbState(..),
|
DbState(..),
|
||||||
withDbState,
|
withDbState,
|
||||||
flushDbQueue,
|
flushDbQueue,
|
||||||
|
@ -34,9 +33,6 @@ data DbState = DbClosed | DbOpen H.DbQueue | DbUnavailable
|
||||||
newDbHandle :: IO DbHandle
|
newDbHandle :: IO DbHandle
|
||||||
newDbHandle = DbHandle <$> newMVar DbClosed
|
newDbHandle = DbHandle <$> newMVar DbClosed
|
||||||
|
|
||||||
unavailableDbHandle :: IO DbHandle
|
|
||||||
unavailableDbHandle = DbHandle <$> newMVar DbUnavailable
|
|
||||||
|
|
||||||
-- Runs an action on the state of the handle, which can change its state.
|
-- Runs an action on the state of the handle, which can change its state.
|
||||||
-- The MVar is empty while the action runs, which blocks other users
|
-- The MVar is empty while the action runs, which blocks other users
|
||||||
-- of the handle from running.
|
-- of the handle from running.
|
||||||
|
|
Loading…
Add table
Reference in a new issue