Searched defs:ProviderExecutor (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DProviderExecutor.java29 public class ProviderExecutor extends Thread implements Executor { class in inherits:Thread,Executor
32 private static HashMap<String, ProviderExecutor> sExecutors = new HashMap<>();
34 public static ProviderExecutor forAuthority(String authority) {
36 ProviderExecutor executor = sExecutors.get(authority);
38 executor = new ProviderExecutor();
39 executor.setName("ProviderExecutor: " + authority);

Completed in 36 milliseconds