EventQueue: Rename do_next_event() to do_events()

This commit is contained in:
Pragmatic Software 2021-06-21 17:40:36 -07:00
parent 7d91eb1c6f
commit cf3ca4e815
2 changed files with 4 additions and 4 deletions

View File

@ -322,9 +322,9 @@ sub duration_until_next_event {
return $self->{event_queue}->[0]->{timeout} - time;
}
# invokes the next event, if ready, and then returns seconds until next event
# invokes the current events and then returns seconds until next upcoming event
sub do_next_event {
sub do_events {
my ($self) = @_;
# early-return if no events available

View File

@ -335,8 +335,8 @@ sub do_one_loop {
# do an irc engine loop (select, eventqueues, etc)
$self->{irc}->do_one_loop;
# check for an available PBot event (returns seconds until next event)
my $waitfor = $self->{event_queue}->do_next_event;
# invoke PBot events (returns seconds until next event)
my $waitfor = $self->{event_queue}->do_events;
# tell irc select loop to sleep for this many seconds
# (or until its own internal eventqueue has an event)