忽略 Vala 中的 DBUS 方法
我有一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里 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.