12345678910111213141516171819202122232425262728293031323334353637 |
- var Socket = require('./sock');
- module.exports = PullSocket;
- function PullSocket() {
- Socket.call(this);
-
- }
- PullSocket.prototype.__proto__ = Socket.prototype;
- PullSocket.prototype.send = function(){
- throw new Error('pull sockets should not send messages');
- };
|