aboutsummaryrefslogtreecommitdiff
path: root/node_modules/mysql2/lib/commands/register_slave.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/mysql2/lib/commands/register_slave.js')
-rw-r--r--node_modules/mysql2/lib/commands/register_slave.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/node_modules/mysql2/lib/commands/register_slave.js b/node_modules/mysql2/lib/commands/register_slave.js
new file mode 100644
index 0000000..4ebfe61
--- /dev/null
+++ b/node_modules/mysql2/lib/commands/register_slave.js
@@ -0,0 +1,27 @@
+'use strict';
+
+const Command = require('./command');
+const Packets = require('../packets');
+
+class RegisterSlave extends Command {
+ constructor(opts, callback) {
+ super();
+ this.onResult = callback;
+ this.opts = opts;
+ }
+
+ start(packet, connection) {
+ const newPacket = new Packets.RegisterSlave(this.opts);
+ connection.writePacket(newPacket.toPacket(1));
+ return RegisterSlave.prototype.registerResponse;
+ }
+
+ registerResponse() {
+ if (this.onResult) {
+ process.nextTick(this.onResult.bind(this));
+ }
+ return null;
+ }
+}
+
+module.exports = RegisterSlave;