~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to drizzled/message/event.proto

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Represents events on the server
3
 
*/
4
 
package drizzled.message;
5
 
option optimize_for = SPEED;
6
 
 
7
 
option java_package = "org.drizzle.messages";
8
 
option java_outer_classname = "EventMessage";
9
 
 
10
 
 
11
 
/*
12
 
 * An Event message can represent any Drizzle related action that
13
 
 * a replication stream reader may be interested in, such as starting
14
 
 * up or shutting down Drizzle.
15
 
 */
16
 
message Event
17
 
{
18
 
  enum Type
19
 
  {
20
 
    STARTUP = 0;         /* Drizzle startup */
21
 
    SHUTDOWN = 1;        /* Normal Drizzle shutdown */
22
 
  }
23
 
 
24
 
  required Type type = 1;
25
 
}