frostfs-sdk-csharp/src/FrostFS.SDK.ClientV2/Parameters/IContext.cs
Pavel Gross ee20798379
All checks were successful
DCO / DCO (pull_request) Successful in 46s
[#24] Client: Implement pool part2
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2024-11-01 10:30:28 +03:00

11 lines
348 B
C#

namespace FrostFS.SDK.ClientV2;
public interface IContext
{
/// <summary>
/// The method call can be extended with additional behavior like canceling by timeout or user's request,
/// callbacks, interceptors.
/// </summary>
/// <value>Additional parameters for calling the method</value>
CallContext? Context { get; }
}