mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
32 lines
581 B
C#
32 lines
581 B
C#
namespace NzbDrone.Core.HealthCheck
|
|
{
|
|
public abstract class HealthCheckBase : IProvideHealthCheck
|
|
{
|
|
public abstract HealthCheck Check();
|
|
|
|
public virtual bool CheckOnStartup
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public virtual bool CheckOnConfigChange
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public virtual bool CheckOnSchedule
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|