Before calling push, pop, or commit, the user must call readNext() until it throws end_of_stream(). It may not be called again thereafter.
| 125 | // Before calling push, pop, or commit, the user must call readNext() until it throws |
| 126 | // end_of_stream(). It may not be called again thereafter. |
| 127 | Future<TLogQueueEntry> readNext() { return readNext(this); } |
| 128 | |
| 129 | void push(TLogQueueEntryRef const& qe) { |
| 130 | BinaryWriter wr(Unversioned()); // outer framing is not versioned |
no test coverage detected