Exemplo n.º 1
0
 public Cpu(StreamInput in) throws IOException {
   this.percent = in.readShort();
   if (in.readBoolean()) {
     this.loadAverage = in.readDoubleArray();
   } else {
     this.loadAverage = null;
   }
 }