Commit 12270768 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

clean logjoin shutdown

parent 66769d17
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -188,5 +188,9 @@ void EventLoop::run() {
  }
}

void EventLoop::shutdown() {
  running_ = false;
}

}
}
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ public:
  EventLoop();
  ~EventLoop();
  void run();
  void shutdown();

protected: