Ejemplo n.º 1
0
        public async Task <bool> AddLibraryAsync(short idConsumer, CancellationToken cancellationToken = default(CancellationToken))
        {
            await OutputProtocol.WriteMessageBeginAsync(new TMessage("AddLibrary", TMessageType.Call, SeqId), cancellationToken);

            var args = new AddLibraryArgs();

            args.IdConsumer = idConsumer;

            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 AddLibraryResult();
            await result.ReadAsync(InputProtocol, cancellationToken);

            await InputProtocol.ReadMessageEndAsync(cancellationToken);

            if (result.__isset.success)
            {
                return(result.Success);
            }
            if (result.__isset.sErrorSystemE)
            {
                throw result.SErrorSystemE;
            }
            throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "AddLibrary failed: unknown result");
        }
Ejemplo n.º 2
0
        public async Task AddLibrary_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken)
        {
            var args = new AddLibraryArgs();
            await args.ReadAsync(iprot, cancellationToken);

            await iprot.ReadMessageEndAsync(cancellationToken);

            var result = new AddLibraryResult();

            try
            {
                try
                {
                    result.Success = await _iAsync.AddLibraryAsync(args.IdConsumer, cancellationToken);
                }
                catch (SErrorSystemException sErrorSystemE)
                {
                    result.SErrorSystemE = sErrorSystemE;
                }
                await oprot.WriteMessageBeginAsync(new TMessage("AddLibrary", 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("AddLibrary", TMessageType.Exception, seqid), cancellationToken);

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

            await oprot.Transport.FlushAsync(cancellationToken);
        }