1
2
3
4
5
6
7
8
9
10
11
12
| package com.zy.acs.conveyor.core.operation;
|
|
| import com.zy.acs.conveyor.core.enums.ConveyorStateType;
| import com.zy.acs.conveyor.core.properties.CtuOperationConfig;
|
| public interface OperationHandler {
|
| ConveyorStateType getType();
|
| void execute(CtuOperationConfig config);
| }
|
|