What is concept of callback in kestrel server in.net core
Loading
What is concept of callback in kestrel server in.net core
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaydeep PatilPosted Nov 5, 2022, 5:32 AM
Kestrel provides an event loop and callback-based notifications of I/O. Libuv manages the gathering and monitoring of events from the OS. Moreover, the user can register callbacks as an event occurs. So, Kestrel uses libuv for I/O work and supports running multiple event loops.
you can check this link for a better understanding
https://stackify.com/what-is-kestrel-web-server/