Get a Specific Job Pool

Using the following SDK, you will be able to get the details of a particular Job Pool by either passing the name or the ID of the Job Pool to the getJobpool() SDK method.

Ensure the following packages are imported:

    
copy
import com.zc.component.jobscheduling.beans.jobpool.ZCJobpoolDetails;
    
copy
ZCJobpoolDetails jobpoolA = jobScheduling.getJobpool("test_jobpool"); // get jobpool with jobpool name ZCJobpoolDetails jobpoolB = jobScheduling.getJobpool(1234567889L); // get jobpool with jobpool Id

Last Updated 2025-06-20 16:21:48 +0530 +0530