Skip to content

Commit

Permalink
update EzyEventLoopGroup to change param name
Browse files Browse the repository at this point in the history
  • Loading branch information
tvd12 committed Sep 4, 2023
1 parent 9b38f98 commit 9d25930
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ public void addScheduleEvent(
}

public void addOneTimeEvent(
Runnable event,
Runnable task,
long delayTime
) {
final EzyEventLoopEvent wrapper = new EzyEventLoopEvent() {
@Override
public boolean call() {
try {
event.run();
task.run();
} catch (Throwable e) {
logger.warn("call one time event error", e);
}
Expand Down

0 comments on commit 9d25930

Please sign in to comment.