// completed if the owner of the record could not complete task before promotion
return constructRecordInfo(mapContainer, record, replicaWaitMillisForScheduledTasks);
}
private RecordInfo constructRecordInfo(MapContainer mapContainer, Record record, long extraDelay) {
final RecordInfo info = new RecordInfo();
info.setStatistics(record.getStatistics());
info.setVersion(record.getVersion());
info.setEvictionCriteriaNumber(record.getEvictionCriteriaNumber());
setDelays(mapContainer, info, record.getKey(), extraDelay);
return info;
}