Continuation not needed anymore in Salesforce - Change My Mind

Поділитися
Вставка
  • Опубліковано 5 січ 2025

КОМЕНТАРІ • 11

  • @prasanthcheenu8253
    @prasanthcheenu8253 7 місяців тому

    thanks for the detailed explanation. The only video I could find in youtube about this.

  • @JohnJ-Hernandez97
    @JohnJ-Hernandez97 Рік тому

    Hey man, Thanks for the information, really helpful I really appreciate it !

  • @sweetmona100
    @sweetmona100 Рік тому

    Hello Sir, Can you please explain the third point. Here you have mentioned that earlier in lwc and aura, request to server were boxed and all requests within the box shared the same governer limits. How continuation pattern was earlier useful in this limitation?

  • @uvaiskomath
    @uvaiskomath 2 роки тому +1

    Very informative

  • @alokste1
    @alokste1 Рік тому

    It helps to achieve a request-reply pattern for integrations with high latency... kindly suggest how can we achieve it without continuation

    • @JitendraZaaInd
      @JitendraZaaInd  Рік тому

      Continuation still has same limitations that of normal HttpRequest.

  • @sweetmona100
    @sweetmona100 Рік тому +2

    If it is not usable any more then ideally it should have been deprecated

    • @JitendraZaaInd
      @JitendraZaaInd  Рік тому +4

      Knowing Salesforce, They would not deprecate to support backward compatibility. @future is still available even though Queueable is available, there are many more examples

  • @GowrishankarSubramanian
    @GowrishankarSubramanian Рік тому

    It's still useful for callouts to external services.

    • @ajai.a2374
      @ajai.a2374 Рік тому

      Can you share a scenario where this will be useful?

    • @GowrishankarSubramanian
      @GowrishankarSubramanian Рік тому +1

      @@ajai.a2374 I needed Continuation when I had to chain multiple async requests to fetch response in chunks. Response was too big to be sent in one call.