Commit e3a57146 by andrewlewis Committed by Oliver Woodman

Fix BufferProcessor.queueEndOfStream javadoc

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=148344328
parent 563a3972
...@@ -85,11 +85,11 @@ public interface BufferProcessor { ...@@ -85,11 +85,11 @@ public interface BufferProcessor {
void queueInput(ByteBuffer buffer); void queueInput(ByteBuffer buffer);
/** /**
* Queues an end of stream signal and begins draining any pending output from this processor. * Queues an end of stream signal. After this method has been called,
* After this method has been called, {@link #queueInput(ByteBuffer)} may not be called until * {@link #queueInput(ByteBuffer)} may not be called until after the next call to
* after the next call to {@link #flush()}. Calling {@link #getOutput()} will return any remaining * {@link #flush()}. Calling {@link #getOutput()} will return any remaining output data. Multiple
* output data. Multiple calls may be required to read all of the remaining output data. * calls may be required to read all of the remaining output data. {@link #isEnded()} will return
* {@link #isEnded()} will return {@code true} once all remaining output data has been read. * {@code true} once all remaining output data has been read.
*/ */
void queueEndOfStream(); void queueEndOfStream();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment