1.How to understand asynchronous io?io in Windows??
2.If I write/read something to the file using asynchronous io :
WriteFile();
ReadFile();
WriteFile();
How many threads does the OS generate to accomplish these task?
Do the 3 task run simultaneously and in multi-threading way or run one after another just with different order?
3.Can I use multithreading and in each thread using a asynchronous io to read or write the same file?
