package com.iplatform.gather;
|
|
import com.walker.connector.Address;
|
import com.walker.store.Storeable;
|
import com.walker.store.task.DatabaseGatherTask;
|
|
import java.util.List;
|
|
public class TestFileGatherTask extends DatabaseGatherTask {
|
|
public TestFileGatherTask(Storeable store, String taskName, Address address){
|
super(store, taskName, address);
|
}
|
|
@Override
|
protected List<Object> transferResultData(List<Object> resultList) {
|
// 暂不转换数据
|
if(resultList == null || resultList.size() == 0){
|
logger.debug("调用返回空数据");
|
return null;
|
}
|
return resultList;
|
}
|
}
|