mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
17 lines
398 B
C#
17 lines
398 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 millisecondsDelay = 0);
|
|
}
|
|
}
|