com.kaka.notice.IResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kaka-core Show documentation
Show all versions of kaka-core Show documentation
An event driven framework
The newest version!
package com.kaka.notice;
import java.io.Serializable;
/**
* 事件结果
*
* @param 泛型参数
* @author zkpursuit
*/
public interface IResult extends Serializable {
/**
* 设置结果
*
* @param result 结果
*/
void set(V result);
/**
* 获取结果
*
* @return 结果
*/
V get();
}