Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/envoy/event/dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ class Dispatcher {
* run() will return.
*/
enum class RunType {
Block, // Executes any events that have been activated, then exit.
NonBlock, // Waits for any pending events to activate, executes them,
Block, // Runs the event-loop until there are no pending events.
NonBlock, // Checks for any pending events to activate, executes them,
// then exits. Exits immediately if there are no pending or
// active events.
RunUntilExit // Runs the event-loop until loopExit() is called, blocking
Expand Down