예제 #1
0
            public async Task VideoCapture_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken)
            {
                var args = new VideoCaptureArgs();
                await args.ReadAsync(iprot, cancellationToken);

                await iprot.ReadMessageEndAsync(cancellationToken);

                var result = new VideoCaptureResult();

                try
                {
                    await _iAsync.VideoCaptureAsync(args.Arguments, cancellationToken);

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

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

                await oprot.Transport.FlushAsync(cancellationToken);
            }
예제 #2
0
            public async Task VideoCapture_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot)
            {
                VideoCapture_args args = new VideoCapture_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                VideoCapture_result result = new VideoCapture_result();

                try
                {
                    await iface_.VideoCaptureAsync(args.Arguments);

                    oprot.WriteMessageBegin(new TMessage("VideoCapture", 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("VideoCapture", TMessageType.Exception, seqid));
                    x.Write(oprot);
                }
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }