namespace HeartRateMonitorAndroid.Services
{
///
/// 通知服务接口
///
public interface INotificationService
{
///
/// 初始化通知服务
///
void Initialize();
///
/// 显示心率通知
///
/// 当前心率
/// 平均心率
/// 最低心率
/// 最高心率
/// 监测时长
void ShowHeartRateNotification(int currentHeartRate, double avgHeartRate, int minHeartRate, int maxHeartRate, TimeSpan duration);
///
/// 取消通知
///
void CancelNotification();
///
/// 显示重连通知
///
/// 标题
/// 消息内容
/// 尝试次数
void ShowReconnectionNotification(string title, string message, int attemptCount);
}
}