TCache-0.10.2.3: A Transactional cache with user-defined persistence

Safe HaskellNone

Data.TCache.Triggers

Synopsis

Documentation

data DBRef a Source

Constructors

DBRef !String !(TPVar a) 

Instances

Typeable1 DBRef 
Eq (DBRef a) 
Ord (DBRef a) 
(IResource a, Typeable a) => Read (DBRef a) 
Show (DBRef a) 

data Elem a Source

Constructors

Elem !a !AccessTime !ModifTime 

Instances

data Status a Source

Constructors

NotRead 
DoNotExist 
Exist a 

Instances

addTrigger :: (IResource a, Typeable a) => (DBRef a -> Maybe a -> STM ()) -> IO ()Source

Add an user defined trigger to the list of triggers Trriggers are called just before an object of the given type is created, modified or deleted. The DBRef to the object and the new value is passed to the trigger. The called trigger function has two parameters: the DBRef being accesed (which still contains the old value), and the new value. If the DBRef is being deleted, the second parameter is Nothing. if the DBRef contains Nothing, then the object is being created

applyTriggers :: (IResource a, Typeable a) => [DBRef a] -> [Maybe a] -> STM ()Source

internally called when a DBRef is modifieddeletedcreated