I need to know if there is a difference between the 2 of them
i tried searching the web and everybody talks about micro vs callback queue which is obvious. but no one made it clear that callback queue and macro queue are the same or different
I need to know if there is a difference between the 2 of them
i tried searching the web and everybody talks about micro vs callback queue which is obvious. but no one made it clear that callback queue and macro queue are the same or different
A task queue is a queue of tasks to run. Each task usually consists of steps like "execute callback x with arguments y", that's why it's also sometimes called a "callback queue", which would be a queue of functions to execute (generally without arguments). More or less they're the same thing, at least you can implement one using the other, which makes them equivalent.