Copyright | (c) Max Amanshauser 2016 |
---|---|
License | MIT |
Maintainer | max@lambdalifting.org |
Safe Haskell | Safe |
Language | Haskell2010 |
A WALStore is anything being able to store WALEntries. WALEntries indicate how often a recovery process has been started for an instance.
Documentation
class WALStore st k where Source #
walUpsertIncrement :: st -> k -> IO () Source #
walDecrement :: st -> k -> IO () Source #
FSMKey k => WALStore PostgresJSONStore k Source # | |
WALStore (MemoryStore k s e a) k Source # | |