Exemplo n.º 1
0
 /* (non-Javadoc)
  */
 @Override
 public void putContainerDescription(ClientRemoteContainerReply crcReply)
     throws ServiceException {
   if (crcReply.getRemoteAddress() == null
       && crcReply.getRemoteOS() == null
       && crcReply.getRemotePerformance() == null
       && crcReply.getRemoteBenchmarkResult() == null) {
     // --- RemoteContainerRequest WAS NOT successful ----
     loadInfo.setNewContainerCanceled(crcReply.getRemoteContainerName());
   } else {
     Service.Slice[] slices = getAllSlices();
     broadcastPutContainerDescription(slices, crcReply);
   }
 }