public static void main(String[] args) throws UnknownHostException, IOException, InterruptedException {
// ----- On the receiver side -----
//
// - a graph that will display the received events
Graph g = new MultiGraph("G",false,true);
g.display();
// - the receiver that waits for events
NetStreamReceiver net = new NetStreamReceiver("localhost",2001,false);
net.setUnpacker(new Base64Unpacker());