* add cancellation token support to playout builds and collection enumerators * fix playout bug with shuffle in order * update changelog
13 lines
338 B
C#
13 lines
338 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IMultiEpisodeShuffleCollectionEnumeratorFactory
|
|
{
|
|
IMediaCollectionEnumerator Create(
|
|
string jsScriptPath,
|
|
IList<MediaItem> mediaItems,
|
|
CollectionEnumeratorState state,
|
|
CancellationToken cancellationToken);
|
|
}
|