All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.contract.model.EventProcessingAwire Maven / Gradle / Ivy

There is a newer version: 0.8.3.RELEASE
Show newest version
package com.jd.blockchain.contract.model;

/**
 * @author huanghaiquan
 *
 */
public interface EventProcessingAwire extends ContractRuntimeAwire {

	/**
	 * 在事件处理方法执行之前调用;
	 * 
	 * @param eventContext
	 */
	void beforeEvent(ContractEventContext eventContext);

	/**
	 * 在事件处理方法成功执行之后调用;
	 * 
	 * @param eventContext
	 *            事件上下文;
	 * @param error
	 *            错误;如果事件处理正常结束,则此参数为 null;如果事件处理发生了错误,此参数非空;
	 */
	void postEvent(ContractEventContext eventContext, ContractException error);


	/**
	 * 在事件处理方法成功执行之后调用;
	 *
	 * @param error
	 *            错误;如果事件处理正常结束,则此参数为 null;如果事件处理发生了错误,此参数非空;
	 */
	void postEvent(ContractException error);

	/**
	 * 在事件处理方法成功执行之后调用;
	 */
	void postEvent();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy