public async Task GetLocalPath_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new GetLocalPathArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new GetLocalPathResult(); try { result.Success = await _iAsync.GetLocalPathAsync(args.Message, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("GetLocalPath", TMessageType.Reply, seqid), cancellationToken); await result.WriteAsync(oprot, cancellationToken); } catch (TTransportException) { throw; } catch (Exception ex) { Console.Error.WriteLine("Error occurred in processor:"); Console.Error.WriteLine(ex.ToString()); var x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error."); await oprot.WriteMessageBeginAsync(new TMessage("GetLocalPath", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async Task GetLocalPath_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot) { GetLocalPath_args args = new GetLocalPath_args(); args.Read(iprot); iprot.ReadMessageEnd(); GetLocalPath_result result = new GetLocalPath_result(); try { result.Success = await iface_.GetLocalPathAsync(args.Message); oprot.WriteMessageBegin(new TMessage("GetLocalPath", TMessageType.Reply, seqid)); result.Write(oprot); } catch (TTransportException) { throw; } catch (Exception ex) { Console.Error.WriteLine("Error occurred in processor:"); Console.Error.WriteLine(ex.ToString()); TApplicationException x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error."); oprot.WriteMessageBegin(new TMessage("GetLocalPath", TMessageType.Exception, seqid)); x.Write(oprot); } oprot.WriteMessageEnd(); oprot.Transport.Flush(); }