package incheon.ags.ias.clct.service;

public interface ClctHstryService {
    Long registerHistoryStart(String excnId, String jobNm, String jobExpln);
    boolean markHistoryAsCompleted(String excnId, Integer processedCount, Integer successCount, String logMsg);
    boolean markHistoryAsFailed(String excnId, Integer processedCount, String errorMessage);
}
