InMemoryScheduleStore constructor

InMemoryScheduleStore({
  1. ScheduleCalculator? calculator,
})

Creates an in-memory schedule store.

Implementation

InMemoryScheduleStore({ScheduleCalculator? calculator})
  : _calculator = calculator ?? ScheduleCalculator();