~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Mark Atwood
  • Date: 2011-06-14 06:10:57 UTC
  • mfrom: (2318.2.19 rf)
  • Revision ID: me@mark.atwood.name-20110614061057-u08az4cidd4l7blm
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
   * Check to see if the client is actively reading.
78
78
   * @retval Boolean value representing reading state.
79
79
   */
80
 
  virtual bool isReading(void)= 0;
 
80
  virtual bool isReading(void)= 0; // todo: delete
81
81
 
82
82
  /**
83
83
   * Check to see if the client is actively writing.
84
84
   * @retval Boolean value representing writing state.
85
85
   */
86
 
  virtual bool isWriting(void)= 0;
 
86
  virtual bool isWriting(void)= 0; // todo: delete
87
87
 
88
88
  /**
89
89
   * Flush all data that has been buffered with store() methods.
129
129
  /**
130
130
   * Send field list for result set.
131
131
   */
132
 
  virtual bool sendFields(List<Item> *list)= 0;
 
132
  virtual void sendFields(List<Item>&)= 0;
133
133
 
134
134
  /* Send result fields in various forms. */
135
135
  virtual void store(Field *from)= 0;
148
148
  }
149
149
 
150
150
  /* Try to remove these. */
151
 
  virtual bool haveMoreData(void)= 0;
152
151
  virtual bool haveError(void)= 0;
153
152
  virtual bool wasAborted(void)= 0;
154
153