package incheon.ags.ias.clct.service;

public interface ClctIntgHstryService {
    void logCollectionStart(String excnId, Long refHstryId, String jobId, String jobNm, String dataSourceNm, String description);
    void logCollectionSuccess(String excnId, Integer processedCount, Integer successCount);
    void logCollectionFailure(String excnId, Exception error, Integer processedCount);
}
