SK SKYVVA Documentation

1. How to do invoke callout using Queueable mode?

What is Queueable mode? As you know that, customer is as our priority, so we want to provide a quality tools for them. For callout, we want to enhance the performance in order to support other technique, which is “Queueable”. Queueable have added to “Auto” mode. In a new release “Auto” mode supports future, batch and queueable. The configuring of Invoke callout using Queueable mode To callout, using “queueable”, there are some steps should be follow:

  1. Interface configuration

skyvvasolutions.CallOutControl c=new skyvvasolutions.CallOutControl(); c.returnxml=true; c.returnListRecord=true; c.iscreatemessage=true; List lId = new List(); for(Account a : [SELECT Id FROM Account]){ lId.add(a.Id); } skyvvasolutions.IServices.invokeCallout2('IntegrationName','InterfaceName',lId, 'QUEUEABLE', c); 3 To check the result After you done executed the code, you can either check the result in apex job and Message monitoring.

Check on Message Monitoring

Open this article in the interactive viewer →