@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Order
Instructs forklift to process messages in a specified order. The annotation is placed
on a method that returns a unique id for messages that cannot be executed simultaneously.
Note that this does not cause the queue to be reordered, but rather insists that messages
with the same identifier cannot be executed in separate threads.