blob: ce72f6bfb585f4c892b77b218a0e1d05fb82c78f [file] [log] [blame]
/*
* Copyright 1999-2015 dangdang.com.
* <p>
* 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.
* </p>
*/
package io.elasticjob.cloud.executor;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import java.io.Serializable;
import java.util.Map;
/**
* 分片上下文集合.
*
* @author zhangliang
*/
@RequiredArgsConstructor
@Getter
@ToString
public final class ShardingContexts implements Serializable {
private static final long serialVersionUID = -4585977349142082152L;
/**
* 作业任务ID.
*/
private final String taskId;
/**
* 作业名称.
*/
private final String jobName;
/**
* 分片总数.
*/
private final int shardingTotalCount;
/**
* 作业自定义参数.
* 可以配置多个相同的作业, 但是用不同的参数作为不同的调度实例.
*/
private final String jobParameter;
/**
* 分配于本作业实例的分片项和参数的Map.
*/
private final Map<Integer, String> shardingItemParameters;
/**
* 作业事件采样统计数.
*/
private int jobEventSamplingCount;
/**
* 当前作业事件采样统计数.
*/
@Setter
private int currentJobEventSamplingCount;
/**
* 是否允许可以发送作业事件.
*/
@Setter
private boolean allowSendJobEvent = true;
public ShardingContexts(final String taskId, final String jobName, final int shardingTotalCount, final String jobParameter,
final Map<Integer, String> shardingItemParameters, final int jobEventSamplingCount) {
this.taskId = taskId;
this.jobName = jobName;
this.shardingTotalCount = shardingTotalCount;
this.jobParameter = jobParameter;
this.shardingItemParameters = shardingItemParameters;
this.jobEventSamplingCount = jobEventSamplingCount;
}
}