Replies: 2 comments
-
Consider not to use syncronyous |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just a note that QUIC connections are also subject to flow control, so there's no guarantee that anything will be sent when you call transmit. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to send data at specific time interval, and I am trying to change line 233 of examples/http3_client.py to this:
for i in range(len(data_list)): self._http.send_data( stream_id=stream_id, data=data_list[i], end_stream=False ) self.transmit() time.sleep(0.05)
But it didn't work as expected. In the loop, it only assembles the datagram and does not actually send it out. And aioquic will send all the packets at once after the loop ends. How can I achieve sending data at specific time interval.
Beta Was this translation helpful? Give feedback.
All reactions