~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: Paul McCullagh
  • Date: 2010-09-22 13:04:27 UTC
  • mto: (1787.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1788.
  • Revision ID: paul.mccullagh@primebase.org-20100922130427-utakdj4ec4uiv1kc
Fixed PBXT recovery and shutdown, added shutdownPlugin() call to all plugins before the plugins are deleted

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
  virtual bool pre(Session *) {return false;}
52
52
  virtual bool post(Session *) {return false;}
53
53
  virtual bool postEnd(Session*) {return false;}
54
 
  virtual bool resetGlobalScoreboard() {return false;}
55
54
 
56
55
  static bool addPlugin(Logging *handler);
57
56
  static void removePlugin(Logging *handler);
58
57
  static bool preDo(Session *session);
59
58
  static bool postDo(Session *session);
60
59
  static bool postEndDo(Session *session);
61
 
  static bool resetStats(Session *session);
62
60
};
63
61
 
64
62
} /* namespace plugin */