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

Refactored storage service out of client service interface.

This commit is contained in:
Teemu Ollakka
2018-07-07 18:06:37 +03:00
parent a8be09161c
commit 2ac13100f7
31 changed files with 465 additions and 247 deletions

View File

@ -87,6 +87,7 @@ namespace wsrep
class transaction;
class const_buffer;
class server_service;
/** @class Server Context
*
*
@ -172,11 +173,11 @@ namespace wsrep
const std::string& name() const { return name_; }
/**
* Return Server identifier string.
* Return Server identifier.
*
* @return Server indetifier string.
* @return Server identifier.
*/
const std::string& id() const { return id_; }
const wsrep::id& id() const { return id_; }
const std::string& incoming_address() const
{ return incoming_address_; }
@ -575,7 +576,7 @@ namespace wsrep
streaming_appliers_map streaming_appliers_;
wsrep::provider* provider_;
std::string name_;
std::string id_;
wsrep::id id_;
std::string incoming_address_;
std::string address_;
std::string working_dir_;