Add example about bytes_received signal

This commit is contained in:
Eugenio Lacuesta 2020-05-04 09:07:27 -03:00
parent 4d625afda5
commit e1948b4923
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 3 additions and 1 deletions

View File

@ -378,7 +378,9 @@ bytes_received
Sent by the HTTP 1.1 and S3 download handlers when a group of bytes is
received for a specific request. This signal might be fired multiple
times for the same request, with partial data each time.
times for the same request, with partial data each time. For instance,
a possible scenario for a 25 kb response would be two signals fired
with 10 kb of data, and a final one with 5 kb of data.
This signal does not support returning deferreds from its handlers.