Skip to content
Snippets Groups Projects
Commit b4ecf5d0 authored by Michael Davis's avatar Michael Davis
Browse files

[ssi_af_ls] Adds an explanatory comment

parent 89963c79
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,11 @@ public:
tf->set_f_seq(jt->second.fSeq);
tf->set_block_id(jt->second.blockId);
// is_buffer_full is set to true when we have one full block of data in the buffer, i.e.
// enough data to send to the client. The actual buffer size is double the block size,
// so we can keep writing a few additional records after is_buffer_full is true. These
// will be sent on the next iteration. If we exceed the hard limit of double the block
// size, Push() will throw an exception.
is_buffer_full = streambuf->Push(record);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment