Add another thought

Maybe we can speed up the algorithm if we know why we're doing the update.
This commit is contained in:
Travis Ralston 2020-04-28 20:44:18 -06:00
parent 00d400b516
commit 9c0422691a

View file

@ -84,5 +84,5 @@ export interface IAlgorithm {
* depending on whether or not getOrderedRooms() should be called after
* processing.
*/
handleRoomUpdate(room: Room): Promise<boolean>;
handleRoomUpdate(room: Room): Promise<boolean>; // TODO: Take a ReasonForChange to better predict the behaviour?
}