1233
1238
return connect_microseconds;
1242
* Returns a pointer to the active Transaction message for this
1243
* Session being managed by the ReplicationServices component, or
1244
* NULL if no active message.
1246
drizzled::message::Transaction *getTransactionMessage() const
1248
return transaction_message;
1252
* Returns a pointer to the active Statement message for this
1253
* Session, or NULL if no active message.
1255
drizzled::message::Statement *getStatementMessage() const
1257
return statement_message;
1261
* Sets the active transaction message used by the ReplicationServices
1264
* @param[in] Pointer to the message
1266
void setTransactionMessage(drizzled::message::Transaction *in_message)
1268
transaction_message= in_message;
1272
* Sets the active statement message used by the ReplicationServices
1275
* @param[in] Pointer to the message
1277
void setStatementMessage(drizzled::message::Statement *in_message)
1279
statement_message= in_message;
1282
/** Pointers to memory managed by the ReplicationServices component */
1283
drizzled::message::Transaction *transaction_message;
1284
drizzled::message::Statement *statement_message;
1237
1285
/** Microsecond timestamp of when Session connected */
1238
1286
uint64_t connect_microseconds;
1239
1287
const char *proc_info;