commitSent method

bool commitSent(
  1. dynamic timestamp
)

Implementation

bool commitSent(timestamp) {
  _sent.add(timestamp);
  deleteFromDiskQueue(timestamp);
  releasePendingItem(timestamp);
  _data.remove(timestamp);
  return true;
}