[MXS-4060] Add support for loop-calls Created: 2022-03-24 Updated: 2022-05-23 Resolved: 2022-04-25 |
|
| Status: | Closed |
| Project: | MariaDB MaxScale |
| Component/s: | Core |
| Affects Version/s: | None |
| Fix Version/s: | 6.3.1 |
| Type: | Task | Priority: | Major |
| Reporter: | Johan Wikman | Assignee: | Johan Wikman |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Sprint: | MXS-SPRINT-154, MXS-SPRINT-155 |
| Description |
|
Currently the delayed call mechanism that is intended for periodic callbacks to be called after a certain longish (milliseconds) delay, is also used for callbacks that merely needs to be called via the event loop. For this purpose the delayed call mechanism is quite inefficient as it always introduced a delay of at least 1ms. A separate mechanism is needed for callbacks to be called as quickly as possible via the event loop. |