001package net.minecraft.world.storage;
002
003public interface IThreadedFileIO
004{
005    /**
006     * Returns a boolean stating if the write was unsuccessful.
007     */
008    boolean writeNextIO();
009}