Annotation Type Incomings
-
@Retention(RUNTIME) @Target(METHOD) public @interface Incomings
This class is used to allow multipleIncoming
declarations. You can either use:@Incoming("a") @Incoming("b") public void consume(T t);
Incomings
annotation as container:@Incomings({ @Incoming("a") @Incoming("b") }) public void consume(T t);