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