Skip to content

Commit

Permalink
refactor: Flow: typing of Scheduler
Browse files Browse the repository at this point in the history
Flow: typing of Scheduler .
maybe Scheduler needs more typing
  • Loading branch information
bubucuo authored and kassens committed Oct 17, 2022
1 parent 54f297a commit 0ab9aea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/scheduler/src/forks/Scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ var LOW_PRIORITY_TIMEOUT = 10000;
var IDLE_PRIORITY_TIMEOUT = maxSigned31BitInt;

// Tasks are stored on a min heap
var taskQueue = [];
var timerQueue = [];
var taskQueue: Array<Task> = [];
var timerQueue: Array<Task> = [];

// Incrementing id counter. Used to maintain insertion order.
var taskIdCounter = 1;
Expand Down Expand Up @@ -121,7 +121,7 @@ const isInputPending =

const continuousOptions = {includeContinuous: enableIsInputPendingContinuous};

function advanceTimers(currentTime) {
function advanceTimers(currentTime: number) {
// Check for tasks that are no longer delayed and add them to the queue.
let timer = peek(timerQueue);
while (timer !== null) {
Expand All @@ -145,7 +145,7 @@ function advanceTimers(currentTime) {
}
}

function handleTimeout(currentTime) {
function handleTimeout(currentTime: number) {
isHostTimeoutScheduled = false;
advanceTimers(currentTime);

Expand All @@ -162,7 +162,7 @@ function handleTimeout(currentTime) {
}
}

function flushWork(hasTimeRemaining, initialTime) {
function flushWork(hasTimeRemaining: boolean, initialTime: number) {
if (enableProfiling) {
markSchedulerUnsuspended(initialTime);
}
Expand Down Expand Up @@ -206,7 +206,7 @@ function flushWork(hasTimeRemaining, initialTime) {
}
}

function workLoop(hasTimeRemaining, initialTime) {
function workLoop(hasTimeRemaining: boolean, initialTime: number) {
let currentTime = initialTime;
advanceTimers(currentTime);
currentTask = peek(taskQueue);
Expand Down

0 comments on commit 0ab9aea

Please sign in to comment.