All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minecraft.server.IAsyncTaskHandler Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package net.minecraft.server;

import com.google.common.util.concurrent.ListenableFuture;

public interface IAsyncTaskHandler {

    ListenableFuture postToMainThread(Runnable runnable);

    boolean isMainThread();
}