Package org.apache.sling.event.jobs

Examples of org.apache.sling.event.jobs.JobsIterator


            final long limit,
            final Map<String, Object>... templates) {
        Utility.logDeprecated(logger, "Deprecated JobManager.queryJobs(...) is called.");
        final Collection<Job> list = this.findJobs(type, topic, limit, templates);
        final Iterator<Job> iter = list.iterator();
        return new JobsIterator() {

            private int index;

            @Override
            public Iterator<Event> iterator() {
View Full Code Here

TOP

Related Classes of org.apache.sling.event.jobs.JobsIterator

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.