Hello, great library it works well!
Unfortunately as is typical with kdb, we have a custom upd function this is actually .u.upd
This means I can't subscribe with out hacking the following line:
if (err === undefined && Array.isArray(o) && o[0] === "upd")
{
events.EventEmitter.prototype.emit.apply(self, o);
}
to
if (err === undefined && Array.isArray(o) && o[0] === ".u.upd")
{
o[0] = "upd";
events.EventEmitter.prototype.emit.apply(self, o);
}
Any chance we could change to pass in the function name to subscribe to?
Hello, great library it works well!
Unfortunately as is typical with kdb, we have a custom upd function this is actually
.u.updThis means I can't subscribe with out hacking the following line:
to
Any chance we could change to pass in the function name to subscribe to?