IPathSearchStorage
interface IPathSearchStorage
using System.Collections.Concurrent;
namespace Relativity.Transfer
{
internal interface IPathSearchStorage
{
ConcurrentBag<ErrorPath> PathErrors { get; }
ConcurrentBag<TransferPath> Paths { get; }
void Add(TransferPath path);
void Add(TransferPath path, PathValidationResult validationStatus);
}
}