| 118 | |
| 119 | template <bool AllowFinish> |
| 120 | void Refresh() { |
| 121 | while (IsEmpty() && !TBlockStream::IsFinished()) { |
| 122 | TBlockStream::RefreshBlock(); |
| 123 | } |
| 124 | if (IsEmpty() && TBlockStream::IsFinished() && !AllowFinish) { |
| 125 | ythrow TYsonException() << "Premature end of yson stream"; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | void Refresh() { |
| 130 | return Refresh<false>(); |