public async Task GetPlayingUserInfo_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new GetPlayingUserInfoArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new GetPlayingUserInfoResult(); try { try { result.Success = await _iAsync.GetPlayingUserInfoAsync(args.UserId, cancellationToken); } catch (Ruyi.SDK.CommonType.ErrorException error1) { result.Error1 = error1; } await oprot.WriteMessageBeginAsync(new TMessage("GetPlayingUserInfo", 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("GetPlayingUserInfo", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async Task GetPlayingUserInfo_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot) { GetPlayingUserInfo_args args = new GetPlayingUserInfo_args(); args.Read(iprot); iprot.ReadMessageEnd(); GetPlayingUserInfo_result result = new GetPlayingUserInfo_result(); try { try { result.Success = await iface_.GetPlayingUserInfoAsync(args.AppId, args.UserId); } catch (Ruyi.SDK.CommonType.ErrorException error1) { result.Error1 = error1; } oprot.WriteMessageBegin(new TMessage("GetPlayingUserInfo", 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("GetPlayingUserInfo", TMessageType.Exception, seqid)); x.Write(oprot); } oprot.WriteMessageEnd(); oprot.Transport.Flush(); }