Exemplo n.º 1
0
            public async Task HelloWorldAsync(CancellationToken cancellationToken)
            {
                await OutputProtocol.WriteMessageBeginAsync(new TMessage("HelloWorld", TMessageType.Call, SeqId), cancellationToken);

                var args = new HelloWorldArgs();

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

                await InputProtocol.ReadMessageEndAsync(cancellationToken);

                return;
            }
Exemplo n.º 2
0
            public async Task HelloWorld_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken)
            {
                var args = new HelloWorldArgs();
                await args.ReadAsync(iprot, cancellationToken);

                await iprot.ReadMessageEndAsync(cancellationToken);

                var result = new HelloWorldResult();

                try
                {
                    await _iAsync.HelloWorldAsync(cancellationToken);

                    await oprot.WriteMessageBeginAsync(new TMessage("HelloWorld", 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("HelloWorld", TMessageType.Exception, seqid), cancellationToken);

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

                await oprot.Transport.FlushAsync(cancellationToken);
            }
Exemplo n.º 3
0
        public IHttpActionResult HelloWorld(string name)
        {
            var safeName = !string.IsNullOrWhiteSpace(name) ? name : "World";

            var result = new HelloWorldResult(safeName);

            return(Ok(result));
        }
Exemplo n.º 4
0
        private HelloWorldResult GetHelloWorldResultFromReader(SqlDataReader rdr)
        {
            HelloWorldResult result = new HelloWorldResult();

            result.WelcomMessage = rdr.GetString(0);

            return(result);
        }
                public HelloWorldResult DeepCopy()
                {
                    var tmp4 = new HelloWorldResult();

                    return(tmp4);
                }