class SecondaryQrCodeLoginPermit::Processor
Public Instance Methods
process_cancelPinCode(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit.rb, line 83 def process_cancelPinCode(seqid, iprot, oprot) args = read_args(iprot, CancelPinCode_args) result = CancelPinCode_result.new() begin result.success = @handler.cancelPinCode(args.request) rescue ::SecondaryQrCodeException => e result.e = e end write_result(result, oprot, 'cancelPinCode', seqid) end
process_getLoginActorContext(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit.rb, line 94 def process_getLoginActorContext(seqid, iprot, oprot) args = read_args(iprot, GetLoginActorContext_args) result = GetLoginActorContext_result.new() begin result.success = @handler.getLoginActorContext(args.request) rescue ::SecondaryQrCodeException => e result.e = e end write_result(result, oprot, 'getLoginActorContext', seqid) end
process_verifyPinCode(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit.rb, line 105 def process_verifyPinCode(seqid, iprot, oprot) args = read_args(iprot, VerifyPinCode_args) result = VerifyPinCode_result.new() begin result.success = @handler.verifyPinCode(args.request) rescue ::SecondaryQrCodeException => e result.e = e end write_result(result, oprot, 'verifyPinCode', seqid) end
process_verifyQrCode(seqid, iprot, oprot)
click to toggle source
# File lib/linerb/gen-rb/secondary_qr_code_login_permit.rb, line 116 def process_verifyQrCode(seqid, iprot, oprot) args = read_args(iprot, VerifyQrCode_args) result = VerifyQrCode_result.new() begin result.success = @handler.verifyQrCode(args.request) rescue ::SecondaryQrCodeException => e result.e = e end write_result(result, oprot, 'verifyQrCode', seqid) end