We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee4fa16 commit 82d97daCopy full SHA for 82d97da
src/h2/events.py
@@ -23,9 +23,13 @@ class Event:
23
24
class RequestReceived(Event):
25
"""
26
- The RequestReceived event is fired whenever request headers are received.
27
- This event carries the HTTP headers for the given request and the stream ID
28
- of the new stream.
+ The RequestReceived event is fired whenever all of a request's headers
+ are received. This event carries the HTTP headers for the given request
+ and the stream ID of the new stream.
29
+
30
+ In HTTP/2, headers may be sent as a HEADERS frame followed by zero or more
31
+ CONTINUATION frames with the final frame setting the END_HEADERS flag.
32
+ This event is fired after the entire sequence is received.
33
34
.. versionchanged:: 2.3.0
35
Changed the type of ``headers`` to :class:`HeaderTuple
0 commit comments