Zeeshan Ali Khan

Results 435 comments of Zeeshan Ali Khan
trafficstars

In GitLab by @danieldg on Oct 29, 2021, 01:29 A few races to avoid: Case A (requires separate tasks for GetNameOwner tracking and SignalStream): 1. NameOwnerChanged("org.example.Foo", "", "ClientA") 2. Foo::HelloSignal...

> Case C (GetNameOwner tracking is part of SignalStream, but is bootstrapped using a separate NameOwnerChanged tracking task): > > 1. DesktopLauncher::StartupNotification("org.example.Foo") > 1. NameOwnerChanged("org.example.Foo", "", "ClientA") > 1. (later)...

In GitLab by @danieldg on Oct 29, 2021, 16:57 - The `DesktopLauncher` signal is sent by a different client than `ClientA`. - I did assume there is a catch-up query...

In GitLab by @Devdutt on Aug 9, 2021, 17:59 Hey, I am new to the D-Bus/zbus codebase and attribute macros in general, but would love to help out(I work in...

> Hey, I am new to the D-Bus/zbus codebase and attribute macros in general, Hi Devdutt, You'd generally want to start with learning to use zbus and D-Bus concepts. I'd...

In GitLab by @bilelmoussaoui on Oct 24, 2020, 04:19 while not completely related, it would be nice to have Type implemented for `std::ffi::CString` as well. I had a bunch of...

> while not completely related, it would be nice to have Type implemented for `std::ffi::CString` as well. Right, see also this [TODO comment](https://gitlab.freedesktop.org/zeenix/zbus/-/blob/master/zvariant/src/type.rs#L229). Since you already implemented `Type` for it,...

In GitLab by @bilelmoussaoui on Oct 24, 2020, 21:12 I had a bunch of portals methods calls that took a null terminated string (while others didn't?) and I was a...

> I had a bunch of portals methods calls that took a null terminated string (while others didn't?) That seems like a bug in the portal implementation then. If the...

In GitLab by @danieldg on Nov 7, 2021, 22:01 Things that wouldn't be doable without `std`: - `OwnedFd` or any file descriptor support at all. - `Dict` uses `HashMap` which...