9fd50ee01e
Fixed cli help texts Added administrator options for critical methods Added result state for client and server specific errors Redirect root to help text Fixed fingerprint error, fingerprint must be case sensitive Re-Added online messages Added typing trigger for discord bot messages client: fixed chunkString for empty results preemtive wrap error objects for server messages both: added raw lua RS Bridge command entry
12 lines
300 B
C#
12 lines
300 B
C#
using MinecraftDiscordBot.Models;
|
|
|
|
namespace MinecraftDiscordBot;
|
|
|
|
public interface IChunkWaiter {
|
|
bool Finished { get; }
|
|
int ID { get; }
|
|
bool IsCancellationRequested { get; }
|
|
void AddChunk(int chunkId, int totalChunks, string value);
|
|
void SetResultState(ResultState state);
|
|
}
|