foQueue = new FanOutQueueImpl("d:/tutorial/fanout-queue", "demo");
// enqueue some logs
for(int i = 0; i < 10; i++) {
String log = "log-" + i;
foQueue.enqueue(log.getBytes());
}
// consuming the queue with fanoutId 1
String fanoutId1 = "realtime";
System.out.println("output from " + fanoutId1 + " consumer:");