IEventLoop
Represents the DOM event loop processing stages and steps of algorithms.
See 7.1.4.2 Processing model.
using System;
using System.Threading;
namespace AngleSharp
{
public interface IEventLoop
{
ICancellable Enqueue(Action<CancellationToken> action, TaskPriority priority);
void Spin();
void CancelAll();
}
}