namespace MediaBrowser.Common.Kernel
{
///
/// An interface to be implemented by the applications hosting a kernel
///
public interface IApplicationHost
{
///
/// Restarts this instance.
///
void Restart();
///
/// Reloads the logger.
///
void ReloadLogger();
}
}