2017-01-29 02:04:58 +00:00
|
|
|
var client = require('../../src/client');
|
|
|
|
var uuid = require('uuid');
|
|
|
|
|
|
|
|
var settings = {
|
|
|
|
log: {
|
|
|
|
info: console.log,
|
|
|
|
error: console.log,
|
|
|
|
debug: console.log
|
|
|
|
}
|
|
|
|
};
|
2017-01-29 18:57:59 +00:00
|
|
|
var conn = client.createConnection(settings, "discover://es.nicdex.com:2113");
|
2017-01-29 02:04:58 +00:00
|
|
|
console.log('Connecting...');
|
|
|
|
conn.on('connected', function (tcpEndPoint) {
|
2017-01-29 18:57:59 +00:00
|
|
|
console.log('Connected to', tcpEndPoint);
|
2017-01-29 02:04:58 +00:00
|
|
|
setTimeout(function () {
|
|
|
|
conn.appendToStream('test-' + uuid.v4(), client.expectedVersion.noStream, [
|
|
|
|
client.createJsonEventData(uuid.v4(), {abc: 123}, {}, 'myEvent')
|
|
|
|
]);
|
|
|
|
}, 5000);
|
|
|
|
});
|
|
|
|
conn.on('error', function (err) {
|
|
|
|
console.log(err.stack);
|
|
|
|
});
|
|
|
|
conn.on('closed', function (reason) {
|
|
|
|
console.log('Connection closed:', reason);
|
|
|
|
process.exit(-1);
|
|
|
|
});
|
|
|
|
conn.connect()
|
|
|
|
.catch(function (err) {
|
|
|
|
console.log(err.stack);
|
|
|
|
process.exit(-1);
|
|
|
|
});
|