public async Task SendMsg_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new SendMsgArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new SendMsgResult(); try { result.Success = await _iAsync.SendMsgAsync(args.Request, args.Broadcast, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("SendMsg", 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("SendMsg", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async Task SendMsg_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot) { SendMsg_args args = new SendMsg_args(); args.Read(iprot); iprot.ReadMessageEnd(); SendMsg_result result = new SendMsg_result(); try { result.Success = await iface_.SendMsgAsync(args.Request, args.Broadcast); oprot.WriteMessageBegin(new TMessage("SendMsg", 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("SendMsg", TMessageType.Exception, seqid)); x.Write(oprot); } oprot.WriteMessageEnd(); oprot.Transport.Flush(); }