
org.dromara.northstar.common.Subscribable Maven / Gradle / Ivy
package org.dromara.northstar.common;
/**
* 可订阅接口
* @author KevinHuangwl
*
*/
public interface Subscribable {
/**
* 订阅
* @return
*/
boolean subscribe();
/**
* 取消订阅
* @return
*/
boolean unsubscribe();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy