com.swak.archiver.executor.ArchiverDataEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swak-datarchiver-boot-starter Show documentation
Show all versions of swak-datarchiver-boot-starter Show documentation
swak component of data archiver spring boot starter
The newest version!
/**
* Copyright (C), 2018 store
* Encoding: UTF-8
* Date: 19-5-13 下午2:26
* History:
*/
package com.swak.archiver.executor;
import com.swak.archiver.conf.ArchiveConfig;
/**
* ArchiverDataEngine.java
* @author ColleyMa
* @version 19-5-13 下午2:26
*/
public interface ArchiverDataEngine {
void engine(ArchiveConfig config);
void cancel();
}