public abstract @interface WorkerThread
implements Annotation
android.support.annotation.WorkerThread |
表示仅应在工作线程上调用带注释的方法。 如果带注释的元素是一个类,则应该在工作线程上调用该类中的所有方法。
例:
@WorkerThread
protected abstract FilterResults performFiltering(CharSequence constraint);
Inherited methods |
|
---|---|
From interface java.lang.annotation.Annotation
|