PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
pm2-axon
/
lib
/
sockets
/** * 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'); };
[-] pub.js
[edit]
[+]
..
[-] sub.js
[edit]
[-] req.js
[edit]
[-] rep.js
[edit]
[-] sub-emitter.js
[edit]
[-] pub-emitter.js
[edit]
[-] push.js
[edit]
[-] sock.js
[edit]
[-] pull.js
[edit]