BililiveRecorder/BililiveRecorder.Core/IStreamMonitor.cs

17 lines
398 B
C#
Raw Normal View History

using System;
namespace BililiveRecorder.Core
2018-10-24 14:33:05 +08:00
{
public interface IStreamMonitor : IDisposable
2018-10-24 14:33:05 +08:00
{
int Roomid { get; }
bool IsMonitoring { get; }
2018-10-24 14:33:05 +08:00
event StreamStatusChangedEvent StreamStatusChanged;
event ReceivedDanmakuEvt ReceivedDanmaku;
2018-10-24 14:33:05 +08:00
bool Start();
void Stop();
2018-12-18 00:16:24 +08:00
void Check(TriggerType type, int millisecondsDelay = 0);
2018-10-24 14:33:05 +08:00
}
}