2024-08-17
| ||
17:33 | • Fixed ticket [31d9fb57cc]: OFRunLoop: Only use OFKernelEventObserver if we have sockets plus 4 other changes artifact: 2b95ba41c1 user: js | |
2024-05-24
| ||
21:24 | • Ticket [31d9fb57cc]: 3 changes artifact: e1a581098e user: js | |
2024-05-22
| ||
20:14 | • Ticket [31d9fb57cc]: 1 change artifact: 5b5bd913b9 user: js | |
2024-03-09
| ||
20:29 | • Ticket [31d9fb57cc]: 3 changes artifact: 7ca8506133 user: js | |
2024-01-20
| ||
21:43 | • Ticket [31d9fb57cc]: 3 changes artifact: 9d9c760c6b user: js | |
2023-07-15
| ||
14:52 | • Ticket [31d9fb57cc]: 5 changes artifact: e2a3c3a64c user: js | |
2020-06-22
| ||
00:37 | • New ticket [31d9fb57cc]. artifact: 36fff07b23 user: js | |
Ticket UUID: | 31d9fb57cc9a777a67dd60bfc14462f838ed42f9 | |||
Title: | OFRunLoop: Only use OFKernelEventObserver if we have sockets | |||
Status: | Fixed | Type: | Nice To Have | |
Severity: | Important | Priority: | Medium | |
Subsystem: | Resolution: | Fixed | ||
Last Modified: | 2024-08-17 17:33:55 | |||
Version Found In: | Milestone: | 1.2 | ||
User Comments: | ||||
js added on 2020-06-22 00:37:54:
It would be much better to only initialize This could even be improved further on some systems by asynchronously initializing sockets: Sockets initialization could be started asynchronously early on, and the synchronous sockets initialization used by many classes could then just wait for the async initialization to be done. This would allow to have all non-socket code running without delay, and possibly sockets already being initialized by the time the application wants to use them, instead of only starting initialization once the application wants to use sockets. js added on 2023-07-15 14:52:14: This has js added on 2024-08-17 17:33:55: Implemented in 7460d2ccd8. |