com.apple.concurrent.Dispatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orange-extensions Show documentation
Show all versions of orange-extensions Show documentation
A pluggable jar containing stubs for the Apple Java Extensions, updated for Java 5 & 6
The newest version!
package com.apple.concurrent;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
/** @since Java for Mac OS X 10.6 Update 2 */
public final class Dispatch {
public static enum Priority {HIGH, LOW, NORMAL}
public ExecutorService createExecutor(String label) {return null;}
public Executor getAsyncExecutor(Priority priority) {return null;}
public Executor getBlockingMainQueueExecutor() {return null;}
public Executor getNonBlockingMainQueueExecutor() {return null;}
public static Dispatch getInstance() {return null;}
}