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:
33
dbsim/db_storage_service.hpp
Normal file
33
dbsim/db_storage_service.hpp
Normal file
@ -0,0 +1,33 @@
|
||||
//
|
||||
// Copyright (C) 2018 Codership Oy <info@codership.com>
|
||||
//
|
||||
|
||||
#ifndef WSREP_DB_STORAGE_SERVICE_HPP
|
||||
#define WSREP_DB_STORAGE_SERVICE_HPP
|
||||
|
||||
#include "wsrep/storage_service.hpp"
|
||||
#include "wsrep/exception.hpp"
|
||||
|
||||
namespace db
|
||||
{
|
||||
class storage_service : public wsrep::storage_service
|
||||
{
|
||||
int start_transaction() override
|
||||
{ throw wsrep::not_implemented_error(); }
|
||||
int append_fragment(const wsrep::id&, wsrep::client_id,
|
||||
int,
|
||||
const wsrep::const_buffer&) override
|
||||
{ throw wsrep::not_implemented_error(); }
|
||||
int update_fragment_meta(const wsrep::ws_meta&) override
|
||||
{ throw wsrep::not_implemented_error(); }
|
||||
int commit(const wsrep::ws_handle&, const wsrep::ws_meta&) override
|
||||
{ throw wsrep::not_implemented_error(); }
|
||||
int rollback(const wsrep::ws_handle&, const wsrep::ws_meta&)
|
||||
override
|
||||
{ throw wsrep::not_implemented_error(); }
|
||||
void store_globals() override { }
|
||||
void reset_globals() override { }
|
||||
};
|
||||
}
|
||||
|
||||
#endif // WSREP_DB_STORAGE_SERVICE_HPP
|
Reference in New Issue
Block a user