I am going through asynchronous
posts and find that the term callback
is always used with asynchronous
, so my question is
callback
bound to asynchronous
?callback
have other meanings in computer science?A callback is a function that is passed to a library function that the library uses to notify the application of completed task.
In my experience, most "callbacks" are synchronous.
Some operating system have asynchronous callbacks but these are generally called things like "asynchronous system traps" or "asynchronous procedure calls."