Issue #4115 - Drop HTTP/2 pseudo headers.

Added Javadocs.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2019-10-03 16:58:16 +02:00
parent 3be178c966
commit ef05f730e6
1 changed files with 7 additions and 0 deletions

View File

@ -650,6 +650,10 @@ public abstract class HttpReceiver
FAILURE
}
/**
* <p>Wraps a list of content listeners, notifies them about content events and
* tracks individual listener demand to produce a global demand for content.</p>
*/
private class ContentListeners
{
private final Map<Object, Long> demands = new ConcurrentHashMap<>();
@ -722,6 +726,9 @@ public abstract class HttpReceiver
}
}
/**
* <p>Implements the decoding of content, producing decoded buffers only if there is demand for content.</p>
*/
private class Decoder implements Destroyable
{
private final HttpResponse response;