mirror of
https://github.com/Readarr/Readarr
synced 2026-02-12 01:33:20 +01:00
31 lines
581 B
C#
31 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;
|
|
}
|
|
}
|
|
}
|
|
}
|