forked from booksbyus/zguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
msreader.java
41 lines (36 loc) · 1.07 KB
/
msreader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import org.zeromq.ZMQ;
//
// Reading from multiple sockets in Java
// This version uses a simple recv loop
//
// Nicola Peduzzi <[email protected]>
//
public class msreader {
public static void main(String[] args) throws Exception {
// Prepare our context and sockets
ZMQ.Context context = ZMQ.context(1);
// Connect to task ventilator
ZMQ.Socket receiver = context.socket(ZMQ.PULL);
receiver.connect("tcp://localhost:5557");
// Connect to weather server
ZMQ.Socket subscriber = context.socket(ZMQ.SUB);
subscriber.connect("tcp://localhost:5556");
subscriber.subscribe("10001 ".getBytes());
// Process messages from both sockets
// We prioritize traffic from the task ventilator
while (true) {
// Process any waiting tasks
byte[] task;
while((task = receiver.recv(ZMQ.NOBLOCK)) != null) {
// process task
}
// Process any waiting weather updates
byte[] update;
while ((update = subscriber.recv(ZMQ.NOBLOCK)) != null) {
// process weather update
}
// No activity, so sleep for 1 msec
Thread.sleep(1000000);
}
}
}