Add Stoppable prepare and start interfaces

This commit is contained in:
Vinnie Falco
2013-09-28 15:00:35 -07:00
parent e4fe965de0
commit 8e58551475
34 changed files with 430 additions and 285 deletions

View File

@@ -90,7 +90,7 @@ IoServicePool::operator boost::asio::io_service& ()
return m_service;
}
void IoServicePool::onStop ()
void IoServicePool::onStop (Journal)
{
// VFALCO NOTE This is a hack! We should gracefully
// cancel all pending I/O, and delete the work
@@ -100,7 +100,7 @@ void IoServicePool::onStop ()
m_service.stop ();
}
void IoServicePool::onChildrenStopped ()
void IoServicePool::onChildrenStopped (Journal)
{
}