UNPKG
@tempest/core
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.0.2
0.0.1
The core of the Tempest Stream Library
@tempest/core
/
src
/
scheduler
/
defaultScheduler.ts
6 lines
(4 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
import
{
TaskScheduler
}
from
'./Scheduler'
import
{
ClockTimer
}
from
'./ClockTimer'
import
{
BinaryTimeline
}
from
'./BinaryTimeline'
export
const
defaultScheduler =
new
TaskScheduler
(
new
ClockTimer
(),
new
BinaryTimeline
())