public async Task getBaggageRestrictions_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new getBaggageRestrictionsArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new getBaggageRestrictionsResult(); try { result.Success = await _iAsync.getBaggageRestrictionsAsync(args.ServiceName, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("getBaggageRestrictions", 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("getBaggageRestrictions", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }
public async global::System.Threading.Tasks.Task getBaggageRestrictions_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken cancellationToken) { var args = new InternalStructs.getBaggageRestrictionsArgs(); await args.ReadAsync(iprot, cancellationToken); await iprot.ReadMessageEndAsync(cancellationToken); var result = new InternalStructs.getBaggageRestrictionsResult(); try { result.Success = await _iAsync.getBaggageRestrictionsAsync(args.ServiceName, cancellationToken); await oprot.WriteMessageBeginAsync(new TMessage("getBaggageRestrictions", TMessageType.Reply, seqid), cancellationToken); await result.WriteAsync(oprot, cancellationToken); } catch (TTransportException) { throw; } catch (Exception ex) { var sErr = $"Error occurred in {GetType().FullName}: {ex.Message}"; if (_logger != null) { _logger.LogError(ex, sErr); } else { Console.Error.WriteLine(sErr); } var x = new TApplicationException(TApplicationException.ExceptionType.InternalError, " Internal error."); await oprot.WriteMessageBeginAsync(new TMessage("getBaggageRestrictions", TMessageType.Exception, seqid), cancellationToken); await x.WriteAsync(oprot, cancellationToken); } await oprot.WriteMessageEndAsync(cancellationToken); await oprot.Transport.FlushAsync(cancellationToken); }