#nullable enable
namespace Terminal.Gui;
internal enum ReasonCannotSend
{
///
/// No reason given.
///
None = 0,
///
/// The parser is already waiting for a request to complete with the given terminator.
///
OutstandingRequest,
///
/// There have been too many requests sent recently, new requests will be put into
/// queue to prevent console becoming unresponsive.
///
TooManyRequests
}