Understand the storage and code traits in version 0.6
mainVersion 0.6 uses a modular approach to job execution and persistence through several key traits:
Storage Traits
MetaDataStore: Required by the scheduler to schedule jobs.NotificationStore: Required by the scheduler to run notifications on job start, scheduled, stop, or removals.
Code Traits
ToCode: A generic trait that provides aPinnedGetFuturefor a given UUID.JobCode: A trait (specializingToCode) that provides the runnable closures for the scheduler. The default implementation isSimpleJobCode.NotificationCode: A trait (specializingToCode) that provides the runnable notification closures. The default implementation isSimpleNotificationCode.