Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
-
data
RunWithCachedSummary
(xs :: [
Type
]) m =
RunWithCachedSummary
{
- cachedRunQuery :: forall a. Qry a -> STM m ( Either PastHorizonException a)
- runWithCachedSummary :: forall m xs. MonadSTM m => STM m ( Summary xs) -> m ( RunWithCachedSummary xs m)
Documentation
data RunWithCachedSummary (xs :: [ Type ]) m Source #
Stateful abstraction to execute queries
RunWithCachedSummary | |
|
runWithCachedSummary :: forall m xs. MonadSTM m => STM m ( Summary xs) -> m ( RunWithCachedSummary xs m) Source #
Construct
RunWithCachedSummary
given action that computes the summary
Most use cases will probably construct this action from an action that reads the ledger state and then computes the summary from that.