Package org.keycloak.test.tools.jobs

Examples of org.keycloak.test.tools.jobs.UsersJob


        jobs.add(job);

        List<UsersJob> usersJobs = new ArrayList<UsersJob>();
        for (int s = start; s < (start + count); s += batch) {
            int c = s + batch <= (start + count) ? batch : (start + count) - s;
            UsersJob usersJob = initializer.instantiateJob();
            usersJob.init(job, sessionFactory, realmName, s, c, prefix, latch);
            usersJobs.add(usersJob);
        }

        // Run executors once all are initialized
        for (UsersJob usersJob : usersJobs) {
View Full Code Here

TOP

Related Classes of org.keycloak.test.tools.jobs.UsersJob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.