pushBack method
Push a sentence to the end (no sort)
Implementation
void pushBack(BaseNarrativeModel item) {
_queue.addLast(item);
_isSorted = false;
}
Push a sentence to the end (no sort)
void pushBack(BaseNarrativeModel item) {
_queue.addLast(item);
_isSorted = false;
}