We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f368378 commit fa3302fCopy full SHA for fa3302f
src/dbus/mod.rs
@@ -84,3 +84,21 @@ pub fn ready(common: &Common) -> Result<()> {
84
85
Ok(())
86
}
87
+
88
+/*
89
+/// Serve interfaces on session socket
90
+///
91
+/// (Currently only the a11y keyboard monitor interface)
92
+fn serve_interfaces(executor: &ThreadPool) {
93
+ let executor_clone = executor.clone();
94
+ executor.spawn_ok(async move {
95
+ serve_interfaces_inner(&executor_clone);
96
+ });
97
+}
98
99
+async fn serve_interfaces_inner(executor: &ThreadPool, a11y_clients: Arc<Mutex<a11y_keyboard_monitor::Clients>>) -> zbus::Result<()> {
100
+ let conn = zbus::Connection::session().await?;
101
+ name_owners::NameOwners::new(&conn, executor).await?;
102
+ Ok(())
103
104
+*/
0 commit comments