2018-10-24 14:33:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace BililiveRecorder.Core
|
|
|
|
|
{
|
|
|
|
|
public interface IRecordedRoom : INotifyPropertyChanged
|
|
|
|
|
{
|
|
|
|
|
int Roomid { get; }
|
|
|
|
|
int RealRoomid { get; }
|
|
|
|
|
string StreamerName { get; }
|
|
|
|
|
|
|
|
|
|
IStreamMonitor StreamMonitor { get; }
|
|
|
|
|
|
|
|
|
|
bool IsMonitoring { get; }
|
|
|
|
|
bool IsRecording { get; }
|
|
|
|
|
|
|
|
|
|
double DownloadSpeedKiBps { get; }
|
|
|
|
|
DateTime LastUpdateDateTime { get; }
|
|
|
|
|
|
2018-10-31 06:22:38 +08:00
|
|
|
|
void Clip();
|
|
|
|
|
|
2018-10-24 14:33:05 +08:00
|
|
|
|
bool Start();
|
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
|
|
void StartRecord();
|
|
|
|
|
void StopRecord();
|
|
|
|
|
|
2018-10-30 20:33:44 +08:00
|
|
|
|
void Shutdown();
|
2018-10-24 14:33:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|