Junjie
昨天 3c31d811aff765b8c5e67c22035b413e0cffb38f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.core.thread.impl.v5;
 
import com.zy.asrs.entity.DeviceConfig;
import com.zy.common.utils.RedisUtil;
import com.zy.core.model.CommandResponse;
import com.zy.core.model.command.StationCommand;
import com.zy.core.thread.impl.station.StationSegmentExecutor;
 
import java.util.function.Function;
 
public class StationMoveSegmentExecutor extends StationSegmentExecutor {
 
    public StationMoveSegmentExecutor(DeviceConfig deviceConfig,
                                      RedisUtil redisUtil,
                                      Function<StationCommand, CommandResponse> commandSender) {
        super(deviceConfig, redisUtil, commandSender);
    }
}