Exemplo n.º 1
0
        public async Task getBotUseInfo_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken)
        {
            var args = new getBotUseInfoArgs();
            await args.ReadAsync(iprot, cancellationToken);

            await iprot.ReadMessageEndAsync(cancellationToken);

            var result = new getBotUseInfoResult();

            try
            {
                try
                {
                    result.Success = await _iAsync.getBotUseInfoAsync(args.BotMid, cancellationToken);
                }
                catch (TalkException e)
                {
                    result.E = e;
                }
                await oprot.WriteMessageBeginAsync(new TMessage("getBotUseInfo", 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("getBotUseInfo", TMessageType.Exception, seqid), cancellationToken);

                await x.WriteAsync(oprot, cancellationToken);
            }
            await oprot.WriteMessageEndAsync(cancellationToken);

            await oprot.Transport.FlushAsync(cancellationToken);
        }