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

com.jd.blockchain.consensus.ActionMessage 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.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
public @interface ActionMessage {
	
	/**
	 * 请求参数转换器;
	 * 

* 指定一个 {@link BinaryMessageConverter} 接口的实现类; * * @return */ Class converter(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy