public async Task ValidateSDK_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new ValidateSDKArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new ValidateSDKResult(); try { result.Success = await _iAsync.ValidateSDKAsync(args.Version, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("ValidateSDK", 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("ValidateSDK", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async Task ValidateSDK_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot) { ValidateSDK_args args = new ValidateSDK_args(); args.Read(iprot); iprot.ReadMessageEnd(); ValidateSDK_result result = new ValidateSDK_result(); try { result.Success = await iface_.ValidateSDKAsync(args.Version); oprot.WriteMessageBegin(new TMessage("ValidateSDK", 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("ValidateSDK", TMessageType.Exception, seqid)); x.Write(oprot); } oprot.WriteMessageEnd(); oprot.Transport.Flush(); }