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

com.jd.blockchain.consensus.UnorderedAction Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.consensus;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author huanghaiquan
 *
 */
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface UnorderedAction {
	/**
	 * 请求分组的索引器;
* * 指定一个 {@link GroupIndexer} 接口的实现类,用于根据请求消息列表来生成共识的分组ID; * @return */ Class groupIndexer() ; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy