[#25] Client: Implement Patch and Range methods
Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
parent
bff8d67867
commit
003b7fdfdd
51 changed files with 1338 additions and 137 deletions
16
src/FrostFS.SDK.ClientV2/Pool/RebalanceParameters.cs
Normal file
16
src/FrostFS.SDK.ClientV2/Pool/RebalanceParameters.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
namespace FrostFS.SDK.ClientV2;
|
||||
|
||||
public class RebalanceParameters(
|
||||
NodesParam[] nodesParams,
|
||||
ulong nodeRequestTimeout,
|
||||
ulong clientRebalanceInterval,
|
||||
ulong sessionExpirationDuration)
|
||||
{
|
||||
public NodesParam[] NodesParams { get; set; } = nodesParams;
|
||||
|
||||
public ulong NodeRequestTimeout { get; set; } = nodeRequestTimeout;
|
||||
|
||||
public ulong ClientRebalanceInterval { get; set; } = clientRebalanceInterval;
|
||||
|
||||
public ulong SessionExpirationDuration { get; set; } = sessionExpirationDuration;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue