insert method

void insert(
  1. int id
)

Inserts the given id to this paged sequence

Implementation

void insert(int id) {
  _addedIds++;
  sequence.add(id);
  _messageSequenceIds.insert(0, id);
}