c# - Thread State Management in Asynchronous Programming -
i new asynchronous programming in .net using c#. have understood far :
with asynchronous programming, threads waiting web service or database return data freed service new requests until data received.
once data received, thread restarted , continue processing code comes after call.
now , wanted know in details how state managed thread can start executing point async call made.
if uses stack handle that, can 1 please give me insight process?
thanks,
mayank
now , wanted know in details how state managed thread can start executing point async call made.
async method divided smaller chunks. basically, when compiling async
method, every await
keyword new method generated.
keep in mind, big simplification , it's done behind scenes , don't need know how works in order use it.
Comments
Post a Comment