1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008-2009 Sun Microsystems
8
* Jay Pipes <joinfu@sun.com>
10
* This program is free software; you can redistribute it and/or modify
11
* it under the terms of the GNU General Public License as published by
12
* the Free Software Foundation; version 2 of the License.
14
* This program is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
* GNU General Public License for more details.
19
* You should have received a copy of the GNU General Public License
20
* along with this program; if not, write to the Free Software
21
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
#ifndef DRIZZLED_PLUGIN_REPLICATOR_H
25
#define DRIZZLED_PLUGIN_REPLICATOR_H
28
* @file Defines the API for a Replicator.
30
* All a replicator does is replicate/reproduce
31
* events, optionally transforming them before sending them off to an applier.
33
* An applier is responsible for applying events, not a replicator...
36
/* some forward declarations needed */
52
* Class which replicates Command messages
58
virtual ~Replicator() {}
60
* Replicate a Command message to an Applier.
64
* It is important to note that memory allocation for the
65
* supplied pointer is not guaranteed after the completion
66
* of this function -- meaning the caller can dispose of the
67
* supplied message. Therefore, replicators and appliers
68
* implementing an asynchronous replication system must copy
69
* the supplied message to their own controlled memory storage
72
* @param Command message to be replicated
74
virtual void replicate(Applier *in_applier, drizzled::message::Command *to_replicate)= 0;
76
* A replicator plugin should override this with its
77
* internal method for determining if it is active or not.
79
virtual bool isActive() {return false;}
82
} /* end namespace drizzled::plugin */
83
} /* end namespace drizzled */
85
#endif /* DRIZZLED_PLUGIN_REPLICATOR_H */