Beispiel #1
0
 @Override
 public void putCryptoCollection(CryptoMessageCollection collection) throws RemoteException {
   try {
     System.out.println(
         "--> Got collection from "
             + RemoteServer.getClientHost()
             + " with "
             + collection.size()
             + " votes and "
             + collection.layers()
             + " layers!");
   } catch (ServerNotActiveException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
   mix.putCryptoCollection(collection);
 }