1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Execution context switching for high priority service.

This commit is contained in:
Teemu Ollakka
2018-07-09 11:35:20 +03:00
parent 95dbab4c08
commit 8a1e76bcec
10 changed files with 77 additions and 12 deletions

View File

@ -25,7 +25,14 @@ void db::server_service::release_storage_service(
delete storage_service;
}
wsrep::high_priority_service* db::server_service::streaming_applier_service()
wsrep::high_priority_service* db::server_service::streaming_applier_service(
wsrep::client_service&)
{
return server_.streaming_applier_service();
}
wsrep::high_priority_service* db::server_service::streaming_applier_service(
wsrep::high_priority_service&)
{
return server_.streaming_applier_service();
}