WiFi Client.write function, a blocking function?

Hi all,

I have 2 questions here:
First, I guess WiFi client.write is a blocking function, isn't it?. Can the experts here confirm?

If so, is there any non-blocking WiFi transmission function?
I did a few experiments of using client.write to transmit data packets of 40, 70, 300 bytes, in which I found a minimum of 400 microseconds delay for that function to finish. That means that ESP32 is not able to work with a device that has sample rate > 2.5k SPS.

In the experiment, the receiving end is a computer that is in the same lab of Nano ESP32, and the WiFi router.

in version 3 of the platform you can use setConnectionTimeout to set the timeout

where can I find more details on those function calls.
setConnectionTimeout is not mentioned here.

OK, I found description of setConnectionTimeout in the Ethernet libary page. Based on that, I don't think this timeout is relevant to my question.

that is a reference for the first Arduino WiFi and not for the ESP32 WiFi library.
ESP32 WiFi library is not documented, but is very similar.
setConnectionTimeout is not documented, but you can always look into the source code of the library

where can I find the source code? Pls

in IDE 2 you can use "Go to Definition" from the context menu

It only shows .h file, not .c file.

does it show the location of the file? (I don't use Arduino IDE)