忽略 Vala 中的 DBUS 方法

发布于 2024-11-20 00:36:52 字数 265 浏览 3 评论 0原文

我有一个在 Vala 中实现的 DBUS 服务器:

[DBus (name = "com.github.Test")]
public class Test.Server {
  public int one() {};
  public int two() {};
  }
}

我正在寻找某种“注释”,它将隐藏 DBUS 中的方法“二”,因为在我的(真实)情况下,它有一些不可序列化的属性,并且目的不是通过 DBUS 使用。

谢谢!

I have a DBUS server implemented in Vala:

[DBus (name = "com.github.Test")]
public class Test.Server {
  public int one() {};
  public int two() {};
  }
}

I am seeking for some kind of "annotation" that will hide method "two" from DBUS, because in my (real) situation it has some unserializable attributes and the intention is not to use throught DBUS.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷清清 2024-11-27 00:36:52

看看这里 https://live.gnome.org/Vala/Manual/Attributes#DBus_Attribute

您正在该方法的顶部寻找 [DBus (visible = false)]。

Take a look here https://live.gnome.org/Vala/Manual/Attributes#DBus_Attribute

You're looking for [DBus (visible = false)] on top of the method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文