DAY38 - Demystifying Queueable Apex in Salesforce ||

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น • 25

  • @pantherschools
    @pantherschools  ปีที่แล้ว +2

    Follow us on Social Media Channels -
    Telegram Channel - telegram.dog/sfdcpanther
    TH-cam - www.youtube.com/@pantherschools
    LinkedIn - www.linkedin.com/in/cloudyamit/
    Topmate - topmate.io/cloudyamit
    Instagram - instagram.com/cloudyamit/
    Subscribe to our TH-cam channel using the below link 👇
    bit.ly/pantherschools
    Join our telegram channel 👇
    bit.ly/sfdcpanther

  • @devarghch
    @devarghch 5 หลายเดือนก่อน

    Bhaiya aapka sikhane ka style bahut badiya lagta hai
    Great video 💯👌

    • @pantherschools
      @pantherschools  5 หลายเดือนก่อน +1

      badhiya hai seekho seekho

  • @ParasharAaru
    @ParasharAaru 6 หลายเดือนก่อน

    Amazing learning apex.Great job.🎉

  • @hemantghaturkar8595
    @hemantghaturkar8595 3 หลายเดือนก่อน

    need to pass argument

  • @anjalisawarkar9610
    @anjalisawarkar9610 6 หลายเดือนก่อน

    Hello Sir,
    Could you please provide solution for the assignment given in the video?

    • @pantherschools
      @pantherschools  5 หลายเดือนก่อน

      Which assignment you are talking about?

  • @rohan_xgaming4895
    @rohan_xgaming4895 ปีที่แล้ว +1

    Hi @pantherSchools, Can you share the notes file as well.

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      You can access those notes from academy.pantherschools.com/digital-products/ Link
      The above links contains some other digital products as well.

  • @asmrrrrrrrrrrrrrrelaxsingg007
    @asmrrrrrrrrrrrrrrelaxsingg007 ปีที่แล้ว

    @pantherSchools how wr remember the syntax if interviewer asks

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      It's all about practice. If u keep practicing then you will always remember the syntax. If u will try to remember then you will always forget

  • @mukulsoni7827
    @mukulsoni7827 ปีที่แล้ว

    How many records ca be processed in single Queable Apex class?

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      There are no limits for the number of records

  • @asmrrrrrrrrrrrrrrelaxsingg007
    @asmrrrrrrrrrrrrrrelaxsingg007 ปีที่แล้ว

    how to learn syntax

  • @nikhiltripathi2760
    @nikhiltripathi2760 ปีที่แล้ว

    sir i want to be in the live session where I can interact ; where do you provide the zoon link so that i can be in the gallery as well?

    • @nikhiltripathi2760
      @nikhiltripathi2760 ปีที่แล้ว

      while joining from you tube I am just able to listen

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      Hi Nikhil,
      These are the recorded sessions. We are not having the live sessions anymore

  • @mukeshpal1352
    @mukeshpal1352 ปีที่แล้ว +1

    Hi @pantherSchools
    I tried to use the same technique to resolve the Data loss possibility in future Method but it did not work. getting error "Variable does not exist: accIDSet" at this line
    List AccRec = [Select id, name From Account where ID IN : accIDSet];
    Please review the code :
    public class futuretry {
    Public Set accIDSet;
    public static void myMethod() {
    // Non Setup object
    Account a = new Account(Name='ApexHours');
    insert a;
    futuretest();
    }
    Public futuretry(Set AccpIds){
    This.accIDSet = AccpIds;
    }

    @Future
    Public Static void futuretest(){
    List AccRec = [Select id, name From Account where ID IN : accIDSet];
    // Setup object
    Profile p = [SELECT Id FROM Profile WHERE Name='Standard User'];
    UserRole r = [SELECT Id FROM UserRole WHERE Name='CEO'];

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      You need to pass the set inside the method not inside the constructor

    • @mukeshsingh-bv7rd
      @mukeshsingh-bv7rd ปีที่แล้ว

      @@pantherschools Then i got again same error. its not accessable for consturctor.

    • @pantherschools
      @pantherschools  ปีที่แล้ว

      These are two different things. If u want to get the Value inside the method you need to pass inside the method and the same is applicable for the constructor.
      As the future method is static, if you want to access any variable inside the static method then the variable should be static at the class level.

    • @mukeshpal1352
      @mukeshpal1352 ปีที่แล้ว

      Thank you 😇@@mukeshsingh-bv7rd