mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 12:15:42 +08:00
20 lines
566 B
C#
20 lines
566 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BililiveRecorder.Core.Api.Danmaku;
|
|
using BililiveRecorder.Core.Config;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
internal interface IDanmakuClient : IDisposable
|
|
{
|
|
bool Connected { get; }
|
|
|
|
event EventHandler<StatusChangedEventArgs>? StatusChanged;
|
|
event EventHandler<DanmakuReceivedEventArgs>? DanmakuReceived;
|
|
|
|
Task ConnectAsync(int roomid, DanmakuTransportMode transportMode, CancellationToken cancellationToken);
|
|
Task DisconnectAsync();
|
|
}
|
|
}
|