mirror of https://gitee.com/bigwinds/arangodb
added stub method because otherwise beginShutdown() would be pure virtual
This commit is contained in:
parent
c9b379f879
commit
d1d5ab1436
|
@ -242,6 +242,15 @@ void ZeroMQBatchJob::handleError (TriagensError const& ex) {
|
|||
_handler->handleError(ex);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// {@inheritDoc}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool ZeroMQBatchJob::beginShutdown () {
|
||||
// TODO FIXME: check what this method should do
|
||||
return false;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief extracts the current request
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -176,6 +176,12 @@ namespace triagens {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void handleError (basics::TriagensError const&);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief shuts down the execution and deletes everything
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool beginShutdown ();
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief extracts the next request and its handler
|
||||
|
|
Loading…
Reference in New Issue