mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
17 lines
388 B
C#
17 lines
388 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
public interface IStreamMonitor : IDisposable
|
|
{
|
|
int Roomid { get; }
|
|
bool IsMonitoring { get; }
|
|
event StreamStatusChangedEvent StreamStatusChanged;
|
|
event ReceivedDanmakuEvt ReceivedDanmaku;
|
|
|
|
bool Start();
|
|
void Stop();
|
|
void Check(TriggerType type, int seconds = 0);
|
|
}
|
|
}
|