using System.Threading.Tasks;
namespace EmbedIO
{
///
/// A callback used to handle a request.
///
/// An interface representing the context of the request.
/// A representing the ongoing operation.
public delegate Task RequestHandlerCallback(IHttpContext context);
}