using Grpc.Core; using Grpc.Core.Interceptors; namespace FrostFS.SDK.SmokeTests; [System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1062:Validate arguments of public methods", Justification = "parameters are provided by GRPC infrastructure")] public class CallbackInterceptor(Action? callback = null) : Interceptor { public override AsyncUnaryCall AsyncUnaryCall( TRequest request, ClientInterceptorContext context, AsyncUnaryCallContinuation continuation) { var call = continuation(request, context); return new AsyncUnaryCall( HandleUnaryResponse(call), call.ResponseHeadersAsync, call.GetStatus, call.GetTrailers, call.Dispose); } private async Task HandleUnaryResponse(AsyncUnaryCall call) { var response = await call; callback?.Invoke($"elapsed"); return response; } }