@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Inherited
public @interface Light
Marks a task method that is fast, likely because it does not make external
calls or access a database. A light method is executed without creating an
additional thread.
- Author:
- Brendan McCarthy