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

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

package net.minecraft.server;

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

public interface IAsyncTaskHandler {

    ListenableFuture postToMainThread(Runnable runnable);

    boolean isMainThread();
}