BililiveRecorder/BililiveRecorder.Core/IStreamMonitor.cs

20 lines
513 B
C#
Raw Normal View History

using System;
2019-08-22 01:26:18 +08:00
using System.Threading.Tasks;
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; }
event RoomInfoUpdatedEvent RoomInfoUpdated;
event StreamStartedEvent StreamStarted;
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);
2019-08-22 01:26:18 +08:00
Task<RoomInfo> FetchRoomInfoAsync();
2018-10-24 14:33:05 +08:00
}
}