UartBus source documentation
UbRetransmittable.java
1 package eu.javaexperience.electronic.uartbus.rpc.client.device;
2 
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
5 
6 /**
7  * This annotation mark that the function can be called again when we assume
8  * that the request or response packet has been lost during the transaction
9  * and can be safely repeat
10  *
11  **/
12 @Retention(RetentionPolicy.RUNTIME)
13 public @interface UbRetransmittable
14 {}