* enable graphics engine in playback troubleshooting * fix text subtitles with graphics engine (watermarks)
11 lines
215 B
C#
11 lines
215 B
C#
namespace ErsatzTV.Core.Interfaces.Troubleshooting;
|
|
|
|
public interface ITroubleshootingNotifier
|
|
{
|
|
bool IsFailed(Guid sessionId);
|
|
|
|
void NotifyFailed(Guid sessionId);
|
|
|
|
void RemoveSession(Guid sessionId);
|
|
}
|