-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSubscribeExample.java
51 lines (43 loc) · 1.42 KB
/
SubscribeExample.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
42
43
44
45
46
47
48
49
50
51
package main;
import java.text.MessageFormat;
import java.util.function.Consumer;
import example.architecture.infra.IServer;
import example.architecture.infra.IServer.Received;
import example.architecture.iotbox._id_.monitor.MonitorChannel;
import example.architecture.servers.ProductionServer;
public class SubscribeExample {
public static void main(String[] args) throws Exception {
// Create Server
IServer production = ProductionServer.create();
Consumer<Received> consumer = null;
try {
// Subscribe to channel on server, and set the callback function
consumer = MonitorChannel.ReceiveStatusOperation.subscribe(production, (message, params) -> {
System.out.println(MessageFormat.format(
"Message received from IoTBox ''{0}''!",
params.getId()
));
System.out.println(MessageFormat.format(
"Info about production line ''{0}'':",
message.getPayload().orElseThrow().getId()
));
message.getPayload().orElseThrow().getBeltInfos().stream().forEach(
belt -> System.out.println(
MessageFormat.format(
"Belt {0} was running at {1} m/s at {2}",
belt.getId(),
belt.getSpeed(),
belt.getTimestamp()
)
)
);
});
System.err.println("Press ENTER to exit");
System.in.read();
} finally {
// Unsubscribe and disconnect
MonitorChannel.ReceiveStatusOperation.unsubscribe(production, consumer);
production.disconnect();
}
}
}