Relativity.Transfer.Enumeration.Batches.BatchNodesBuffer
class BatchNodesBuffer
namespace Relativity.Transfer.Enumeration.Batches
{
internal class BatchNodesBuffer
{
public long CurrentBatchBytesSize { get; }
public long FilesInCurrentBatch { get; }
public long DirectoriesInCurrentBatch { get; }
public BatchNodesBuffer();
public void Add(INode node);
public IEnumerable<INode> GetNodes();
public int Count();
}
}