Source
ValueUpdate cloneForAckQueue(){
if (!_cloned) {
_cloned = true;
return this;
}
return new ValueUpdate(
value,
ts: ts,
status: status,
count: count,
sum: sum,
min: min,
max: max
);
}
ValueUpdate cloneForAckQueue(){
if (!_cloned) {
_cloned = true;
return this;
}
return new ValueUpdate(
value,
ts: ts,
status: status,
count: count,
sum: sum,
min: min,
max: max
);
}