~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replication_services.h

  • Committer: Brian Aker
  • Date: 2010-04-06 06:50:19 UTC
  • mfrom: (1405.3.9 replication-api)
  • Revision ID: brian@gaz-20100406065019-n387mztxp1i75qel
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#define DRIZZLED_REPLICATION_SERVICES_H
27
27
 
28
28
#include "drizzled/atomics.h"
 
29
#include "drizzled/plugin/replication.h"
29
30
 
30
31
#include <vector>
31
32
 
96
97
   * Helper method which pushes a constructed message out to the registered
97
98
   * replicator and applier plugins.
98
99
   *
 
100
   * @param Session descriptor
99
101
   * @param Message to push out
100
102
   */
101
 
  void pushTransactionMessage(message::Transaction &to_push);
 
103
  plugin::ReplicationReturnCode pushTransactionMessage(Session &in_session,
 
104
                                                       message::Transaction &to_push);
102
105
  /**
103
106
   * Constructor
104
107
   */