- 授权协议: 未知
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://avis.sourceforge.net/
- 软件文档: http://avis.sourceforge.net/documentation.html
软件介绍
Avis 是一个多播事件总线。它提供了一个快捷的发布/订阅事件的路由服务。
示例代码:
Elvin elvin = new Elvin ("elvin://elvin_router");
Notification ntfn = new Notification ();
ntfn.set ("Status-Message", 1000);
ntfn.set ("Host-Name", hostName ());
ntfn.set ("Department", lookupDepartment ());
ntfn.set ("Percent-Disk-Free", diskFreePercentage ());
elvin.send (ntfn);
elvin.close ();