You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Json/Loading/IBulkJsonLoader.cs

11 lines
272 B

using System.IO.Abstractions;
namespace Recyclarr.Json.Loading;
public interface IBulkJsonLoader
{
ICollection<T> LoadAllFilesAtPaths<T>(
IEnumerable<IDirectoryInfo> jsonPaths,
Func<IObservable<LoadedJsonObject<T>>, IObservable<T>>? extra = null);
}