/usr/local/lib/node_modules/pm2/node_modules/pm2-axon/lib/sockets
NameSizeModeActions
pub-emitter.js4680644editdlrm
pub.js11650644editdlrm
pull.js5230644editdlrm
push.js5020644editdlrm
rep.js13320644editdlrm
req.js19060644editdlrm
sock.js91210644editdlrm
sub-emitter.js18100644editdlrm
sub.js26670644editdlrm
Edit: /usr/local/lib/node_modules/pm2/node_modules/pm2-axon/lib/sockets/pull.js (523B)
/** * Module dependencies. */ var Socket = require('./sock'); /** * Expose `PullSocket`. */ module.exports = PullSocket; /** * Initialize a new `PullSocket`. * * @api private */ function PullSocket() { Socket.call(this); // TODO: selective reception } /** * Inherits from `Socket.prototype`. */ PullSocket.prototype.__proto__ = Socket.prototype; /** * Pull sockets should not send messages. */ PullSocket.prototype.send = function(){ throw new Error('pull sockets should not send messages'); };