2022-01-17 15:24:04 +01:00
|
|
|
|
using MinecraftDiscordBot.Models;
|
|
|
|
|
|
|
|
|
|
namespace MinecraftDiscordBot;
|
2022-01-16 15:58:35 +01:00
|
|
|
|
|
|
|
|
|
public interface IChunkWaiter {
|
|
|
|
|
bool Finished { get; }
|
|
|
|
|
int ID { get; }
|
|
|
|
|
bool IsCancellationRequested { get; }
|
|
|
|
|
void AddChunk(int chunkId, int totalChunks, string value);
|
2022-01-17 15:24:04 +01:00
|
|
|
|
void SetResultState(ResultState state);
|
2022-01-16 15:58:35 +01:00
|
|
|
|
}
|