com.github.lontime.shaded.org.redisson.mapreduce.BaseMapperTask Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2013-2021 Nikita Koksharov
*
* 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 com.github.lontime.shaded.org.redisson.mapreduce;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.github.lontime.shaded.org.redisson.api.RedissonClient;
import com.github.lontime.shaded.org.redisson.api.annotation.RInject;
/**
*
* @author Nikita Koksharov
*
* @param output key
* @param output value
*/
public abstract class BaseMapperTask implements Runnable, Serializable {
private static final long serialVersionUID = 6224632826989873592L;
@RInject
protected RedissonClient redisson;
protected Class> objectClass;
protected List objectNames = new ArrayList();
protected Class> objectCodecClass;
protected int workersAmount;
protected String collectorMapName;
protected long timeout;
public BaseMapperTask() {
}
public BaseMapperTask(Class> objectClass, Class> objectCodecClass) {
super();
this.objectClass = objectClass;
this.objectCodecClass = objectCodecClass;
}
public void addObjectName(String objectName) {
this.objectNames.add(objectName);
}
public void clearObjectNames() {
this.objectNames.clear();
}
public void setTimeout(long timeout) {
this.timeout = timeout;
}
public void setWorkersAmount(int workersAmount) {
this.workersAmount = workersAmount;
}
public void setCollectorMapName(String collatorMapName) {
this.collectorMapName = collatorMapName;
}
}