[#24] Client: Implement pool part1
All checks were successful
DCO / DCO (pull_request) Successful in 46s
All checks were successful
DCO / DCO (pull_request) Successful in 46s
first iteration - base classes and methods Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
parent
d1271df207
commit
c9a75ea025
72 changed files with 2786 additions and 468 deletions
12
src/FrostFS.SDK.ClientV2/Poll/Statistic.cs
Normal file
12
src/FrostFS.SDK.ClientV2/Poll/Statistic.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace FrostFS.SDK.ClientV2;
|
||||
|
||||
public sealed class Statistic
|
||||
{
|
||||
public ulong OverallErrors { get; internal set; }
|
||||
|
||||
public Collection<NodeStatistic> Nodes { get; } = [];
|
||||
|
||||
public string[]? CurrentNodes { get; internal set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue