com.javanut.pronghorn.pipe.proxy.ProngTemplateField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pronghorn-pipes Show documentation
Show all versions of pronghorn-pipes Show documentation
Ring buffer based queuing utility for applications that require high performance and/or a small
footprint. Well suited for embedded and stream based processing.
package com.javanut.pronghorn.pipe.proxy;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD) //for field to map to message template field
public @interface ProngTemplateField {
long fieldId() default 0;
int decimalPlaces() default 2;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy