net.hasor.rsf.hprose.server.PushEvent Maven / Gradle / Ivy
The newest version!
/**********************************************************\
| |
| hprose |
| |
| Official WebSite: http://www.hprose.com/ |
| http://www.hprose.org/ |
| |
\**********************************************************/
/**********************************************************\
* *
* PushEvent.java *
* *
* hprose push event interface for Java. *
* *
* LastModified: Aug 11, 2015 *
* Author: Ma Bingyao *
* *
\**********************************************************/
package hprose.server;
public interface PushEvent {
void subscribe(String topic, String id, HproseService service);
void unsubscribe(String topic, String id, HproseService service);
}