Class AbstractRecordInHandle
- java.lang.Object
-
- risesoft.data.transfer.core.record.AbstractRecordInHandle
-
- All Implemented Interfaces:
Handle,RecordInHandle
- Direct Known Subclasses:
ColumnDisposeHandlePlug
public abstract class AbstractRecordInHandle extends Object implements RecordInHandle
封装了 RecordInHandle 事件 保留一条一条执行的方法 批调用改成循环调用一条一条 在不覆盖的时候提供初始化方法- Author:
- lb
- Date:
- 2024年3月13日
-
-
Constructor Summary
Constructors Constructor Description AbstractRecordInHandle()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddoIn(List<Record> records)从输入通道中进入一批数据abstract voiddoIn(Record record)从输入通道中进入一条数据
-
-
-
Method Detail
-
doIn
public abstract void doIn(Record record)
Description copied from interface:RecordInHandle从输入通道中进入一条数据- Specified by:
doInin interfaceRecordInHandle
-
doIn
public void doIn(List<Record> records)
Description copied from interface:RecordInHandle从输入通道中进入一批数据- Specified by:
doInin interfaceRecordInHandle
-
-