org.terracotta.quartz.wrappers.JobFacade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quartz Show documentation
Show all versions of quartz Show documentation
Enterprise Job Scheduler
/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
*/
package org.terracotta.quartz.wrappers;
import org.quartz.JobKey;
import org.terracotta.quartz.collections.ToolkitDSHolder;
import org.terracotta.toolkit.store.ToolkitStore;
import java.util.Set;
public class JobFacade {
private final ToolkitStore jobsByFQN;
private final Set allJobsGroupNames;
private final Set pausedJobGroups;
private final Set blockedJobs;
public JobFacade(ToolkitDSHolder toolkitDSHolder) {
this.jobsByFQN = toolkitDSHolder.getOrCreateJobsMap();
this.allJobsGroupNames = toolkitDSHolder.getOrCreateAllGroupsSet();
this.pausedJobGroups = toolkitDSHolder.getOrCreatePausedGroupsSet();
this.blockedJobs = toolkitDSHolder.getOrCreateBlockedJobsSet();
}
public JobWrapper get(JobKey jobKey) {
return jobsByFQN.get(jobKey);
}
public void put(JobKey jobKey, JobWrapper jobWrapper) {
jobsByFQN.putNoReturn(jobKey, jobWrapper);
}
public boolean containsKey(JobKey key) {
return jobsByFQN.containsKey(key);
}
public boolean hasGroup(String name) {
return allJobsGroupNames.contains(name);
}
public boolean addGroup(String name) {
return allJobsGroupNames.add(name);
}
public boolean addPausedGroup(String name) {
return pausedJobGroups.add(name);
}
public JobWrapper remove(JobKey jobKey) {
return jobsByFQN.remove(jobKey);
}
public boolean removeGroup(String group) {
return allJobsGroupNames.remove(group);
}
public boolean pausedGroupsContain(String group) {
return pausedJobGroups.contains(group);
}
public boolean blockedJobsContain(JobKey jobKey) {
return blockedJobs.contains(jobKey);
}
public int numberOfJobs() {
return jobsByFQN.size();
}
public Set getAllGroupNames() {
return allJobsGroupNames;
}
public boolean removePausedJobGroup(String group) {
return pausedJobGroups.remove(group);
}
public void clearPausedJobGroups() {
pausedJobGroups.clear();
}
public void addBlockedJob(JobKey key) {
blockedJobs.add(key);
}
public boolean removeBlockedJob(JobKey key) {
return blockedJobs.remove(key);
}
}