1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-05 03:41:13 +03:00

Moved commit()/rollback() to transaction_termination_service interface.

This commit is contained in:
Teemu Ollakka
2018-06-18 15:31:57 +03:00
parent 03043d3f25
commit 4a92841cb2
3 changed files with 44 additions and 12 deletions

View File

@ -0,0 +1,20 @@
//
// Copyright (C) 2018 Codership Oy <info@codership.com>
//
#ifndef WSREP_APPLYING_SERVICE_HPP
#define WSREP_APPLYING_SERVICE_HPP
namespace wsrep
{
class applying_service
{
public:
virtual int start_transaction();
virtual int apply_write_set(const wsrep::const_buffer&) = 0;
virtual int apply_toi(const wsrep::const_buffer&);
virtual int apply_nbo(const wsrep::const_buffer&);
};
}
#endif // WSREP_APPLYING_SERVICE_HPP