SciFlow-0.6.1: Scientific workflow management system

Safe HaskellNone
LanguageHaskell2010

Scientific.Workflow.Internal.DB

Synopsis

Documentation

readData :: Key -> WorkflowDB -> IO Val Source #

saveData :: Key -> Val -> WorkflowDB -> IO () Source #

updateData :: Key -> Val -> WorkflowDB -> IO () Source #

delRecord :: Key -> WorkflowDB -> IO () Source #

newtype WorkflowDB Source #

An abstract type representing the database used to store states of workflow

Constructors

WorkflowDB Connection 

type DBData a = (FromJSON a, ToJSON a, Serialize a) Source #

DBData constraint is used for data serialization.