コード例 #1
0
 @Override
 public void writePayload(JobSchedulerImpl js, DataOutput dataOut) throws IOException {
   js.write(dataOut);
 }
コード例 #2
0
 @Override
 public JobSchedulerImpl readPayload(DataInput dataIn) throws IOException {
   JobSchedulerImpl result = new JobSchedulerImpl(this.store);
   result.read(dataIn);
   return result;
 }