~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: Joe Daly
  • Date: 2010-03-02 16:22:42 UTC
  • mto: (1309.2.20 build)
  • mto: This revision was merged to the branch mainline in revision 1320.
  • Revision ID: skinny.moey@gmail.com-20100302162242-rn0n5gjav5jnzryt
add plugin handle to logging to indicate when the session destructor is called

Show diffs side-by-side

added added

removed removed

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