Class CallbackScheduler
- Namespace
- easyar
Callback scheduler. There are two subclasses DelayedCallbackScheduler and ImmediateCallbackScheduler. Among them, DelayedCallbackScheduler is used to delay callbacks until they are manually invoked, and can be used in single-threaded environments (such as various UI environments). ImmediateCallbackScheduler is used to execute callbacks immediately, and can be used in multi-threaded environments (such as servers or background services).
CallbackScheduler