In Java or C# or some other languages, there are non-blocking IO facilities, e.g., for sockets.
So I can give my callback functions to the non-blocking IO and once the non-blocking IO receives anything, it will call my callbacks.
I am wondering how they are implemented. If I create non-blocking IO, behind the scene, does Java or C# just create background threads for them? or the OS underlying has native support for them?