tailable property

bool tailable

Implementation

bool get tailable => (flags & MongoQueryMessage.OPTS_TAILABLE_CURSOR) != 0;
void tailable=(bool value)

Tailable means cursor is not closed when the last data is retrieved

Implementation

set tailable(bool value) => value
    ? flags |= MongoQueryMessage.OPTS_TAILABLE_CURSOR
    : flags &= ~(MongoQueryMessage.OPTS_TAILABLE_CURSOR);