package com.intellectualcrafters.plot.util; import com.intellectualcrafters.plot.object.ChunkLoc; import com.intellectualcrafters.plot.util.SetQueue.ChunkWrapper; import java.util.Collection; public interface PlotQueue { boolean setBlock(final String world, final int x, final int y, final int z, final short id, final byte data); PlotChunk getChunk(ChunkWrapper wrap); void setChunk(PlotChunk chunk); boolean fixLighting(PlotChunk chunk, boolean fixAll); void sendChunk(String world, Collection locs); /** * Gets the FaweChunk and sets the requested blocks * @return */ PlotChunk next(); PlotChunk next(ChunkWrapper wrap, boolean fixLighting); void clear(); }