@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Slow
Indicates that the target method is potentially blocking as it might make I/O calls or block on
locks. Method with this annotation should not be called on the UI thread.