class SecondaryQrCodeLoginPermitNoticeService::Processor

Public Instance Methods

process_checkPinCodeVerified(seqid, iprot, oprot) click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit_notice_service.rb, line 49
def process_checkPinCodeVerified(seqid, iprot, oprot)
  args = read_args(iprot, CheckPinCodeVerified_args)
  result = CheckPinCodeVerified_result.new()
  begin
    @handler.checkPinCodeVerified(args.request)
  rescue ::SecondaryQrCodeException => e
    result.e = e
  end
  write_result(result, oprot, 'checkPinCodeVerified', seqid)
end
process_checkQrCodeVerified(seqid, iprot, oprot) click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit_notice_service.rb, line 60
def process_checkQrCodeVerified(seqid, iprot, oprot)
  args = read_args(iprot, CheckQrCodeVerified_args)
  result = CheckQrCodeVerified_result.new()
  begin
    @handler.checkQrCodeVerified(args.request)
  rescue ::SecondaryQrCodeException => e
    result.e = e
  end
  write_result(result, oprot, 'checkQrCodeVerified', seqid)
end