Skip to content

Commit

Permalink
Update TaskDeadlinesService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtirado authored Jan 9, 2024
1 parent 14ec225 commit eee4256
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public boolean isValidStatus(Status status) {

}

default void scheduleNew(long taskId, long deadlineId, long delay, DeadlineType type) {
schedule(taskId, deadlineId, delay, type);
}

public void schedule(long taskId, long deadlineId, long delay, DeadlineType type);

public void unschedule(long taskId, DeadlineType type);
Expand Down

0 comments on commit eee4256

Please sign in to comment.