Most visited

Recently visited

BinderThread

public abstract @interface BinderThread
implements Annotation

android.support.annotation.BinderThread


表示只应在活页夹线程上调用带注释的方法。 如果带注释的元素是一个类,则应该在活页夹线程上调用该类中的所有方法。

例:


  @BinderThread
  public BeamShareData createBeamShareData() { ... }
 

摘要(Summary)

继承方法(Inherited methods)

From interface java.lang.annotation.Annotation

Hooray!