public async global::System.Threading.Tasks.Task getDependenciesForTrace_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new InternalStructs.getDependenciesForTraceArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new InternalStructs.getDependenciesForTraceResult(); try { result.Success = await _iAsync.getDependenciesForTraceAsync(args.TraceId, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("getDependenciesForTrace", TMessageType.Reply, seqid), cancellationToken); await result.WriteAsync(oprot, cancellationToken); } catch (TTransportException) { throw; } catch (Exception ex) { var sErr = $"Error occurred in {GetType().FullName}: {ex.Message}"; if (_logger != null) { _logger.LogError(ex, sErr); } else { Console.Error.WriteLine(sErr); } var x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error."); await oprot.WriteMessageBeginAsync(new TMessage("getDependenciesForTrace", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async global::System.Threading.Tasks.Task <global::Jaeger.Thrift.Agent.Dependencies> getDependenciesForTraceAsync(string traceId, CancellationToken cancellationToken = default) { await OutputProtocol.WriteMessageBeginAsync(new TMessage("getDependenciesForTrace", TMessageType.Call, SeqId), cancellationToken); var args = new InternalStructs.getDependenciesForTraceArgs() { TraceId = traceId, }; await args.WriteAsync(OutputProtocol, cancellationToken); await OutputProtocol.WriteMessageEndAsync(cancellationToken); await OutputProtocol.Transport.FlushAsync(cancellationToken); var msg = await InputProtocol.ReadMessageBeginAsync(cancellationToken); if (msg.Type == TMessageType.Exception) { var x = await TApplicationException.ReadAsync(InputProtocol, cancellationToken); await InputProtocol.ReadMessageEndAsync(cancellationToken); throw x; } var result = new InternalStructs.getDependenciesForTraceResult(); await result.ReadAsync(InputProtocol, cancellationToken); await InputProtocol.ReadMessageEndAsync(cancellationToken); if (result.__isset.success) { return(result.Success); } throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getDependenciesForTrace failed: unknown result"); }