xuxiaobo-bobo e6520392ec '...'
2024-03-18 11:14:05 +08:00

38 lines
523 B
JavaScript

/**
* 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');
};