namespace Umbraco.Cms.Core.Hosting
{
public interface IUmbracoApplicationLifetime
{
///
/// A value indicating whether the application is restarting after the current request.
///
bool IsRestarting { get; }
///
/// Terminates the current application. The application restarts the next time a request is received for it.
///
void Restart();
}
}