Drizzled Public API Documentation

transaction_applier.h
00001 /* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
00002  *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
00003  *
00004  *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
00005  *  Copyright (C) 2010 Jay Pipes
00006  *
00007  *  Authors:
00008  *
00009  *    Jay Pipes <jaypipes@gmail.com>
00010  *
00011  *  This program is free software; you can redistribute it and/or modify
00012  *  it under the terms of the GNU General Public License as published by
00013  *  the Free Software Foundation; version 2 of the License.
00014  *
00015  *  This program is distributed in the hope that it will be useful,
00016  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018  *  GNU General Public License for more details.
00019  *
00020  *  You should have received a copy of the GNU General Public License
00021  *  along with this program; if not, write to the Free Software
00022  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00023  */
00024 
00025 #pragma once
00026 
00035 #include <drizzled/plugin/plugin.h>
00036 #include <drizzled/plugin/replication.h>
00037 
00038 #include <drizzled/visibility.h>
00039 
00040 namespace drizzled {
00041 namespace plugin {
00042 
00046 class DRIZZLED_API TransactionApplier : public Plugin
00047 {
00048 public:
00049   explicit TransactionApplier(std::string name_arg)
00050     : Plugin(name_arg, "TransactionApplier")
00051   {
00052   }
00068   virtual ReplicationReturnCode apply(Session &in_session,
00069                                       const message::Transaction &to_apply)= 0;
00070 
00071   static bool addPlugin(TransactionApplier *applier);
00072   static void removePlugin(TransactionApplier *applier);
00073 };
00074 
00075 } /* namespace plugin */
00076 } /* namespace drizzled */
00077