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.

Sample Code Snippet


Package Imports
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-09-23 19:47:43 +0530 IST