Sujet : Re: OT: Windows (Was: Re: Open Source does not mean easily
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.programmerDate : 06. Jan 2025, 21:26:15
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vlhe96$1pgeu$4@dont-email.me>
References : 1 2 3 4 5 6
User-Agent : Pan/0.161 (Chasiv Yar; )
On Mon, 6 Jan 2025 14:21:48 -0000 (UTC), Muttley wrote:
Not so much in unix unless you're writing a GUI program.
In *nix, select/poll works well when the performance bottleneck resides in
the I/O. async/await lets you linearize the logic of your handlers for
easier comprehension, instead of breaking them up into separate calback
stages.
async/await is also useful in GUI programs, for the same reason.