[#26] All: Remove V2 from naming
Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
parent
c406df1a78
commit
766f61a5f7
219 changed files with 219 additions and 974 deletions
34
src/FrostFS.SDK.Client/Pool/WrapperPrm.cs
Normal file
34
src/FrostFS.SDK.Client/Pool/WrapperPrm.cs
Normal file
|
@ -0,0 +1,34 @@
|
|||
using System;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
using Grpc.Net.Client;
|
||||
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace FrostFS.SDK.Client;
|
||||
|
||||
// wrapperPrm is params to create clientWrapper.
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "CA1815:Override equals and operator equals on value types", Justification = "<Pending>")]
|
||||
public struct WrapperPrm
|
||||
{
|
||||
internal ILogger? Logger { get; set; }
|
||||
|
||||
internal string Address { get; set; }
|
||||
|
||||
internal ECDsa? Key { get; set; }
|
||||
|
||||
internal ulong DialTimeout { get; set; }
|
||||
|
||||
internal ulong StreamTimeout { get; set; }
|
||||
|
||||
internal uint ErrorThreshold { get; set; }
|
||||
|
||||
internal Action ResponseInfoCallback { get; set; }
|
||||
|
||||
internal Action PoolRequestInfoCallback { get; set; }
|
||||
|
||||
internal GrpcChannelOptions GrpcChannelOptions { get; set; }
|
||||
|
||||
internal ulong GracefulCloseOnSwitchTimeout { get; set; }
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue