Live texturing
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
|
||||
var zmq = require('../../')
|
||||
, sock = zmq.socket('push');
|
||||
|
||||
sock.bindSync('tcp://127.0.0.1:3000');
|
||||
console.log('Producer bound to port 3000');
|
||||
|
||||
setInterval(function(){
|
||||
console.log('sending work');
|
||||
sock.send('some work');
|
||||
}, 500);
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
var zmq = require('../../')
|
||||
, sock = zmq.socket('pull');
|
||||
|
||||
sock.connect('tcp://127.0.0.1:3000');
|
||||
console.log('Worker connected to port 3000');
|
||||
|
||||
sock.on('message', function(msg){
|
||||
console.log('work: %s', msg.toString());
|
||||
});
|
||||
Reference in New Issue
Block a user