All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.neko233.toolchain.storage.wal.DefaultWalV1 Maven / Gradle / Ivy

package com.neko233.toolchain.storage.wal;

import java.io.File;

/**
 * @author SolarisNeko
 * Date on 2023-01-29
 */
public abstract class DefaultWalV1 extends AbstractWalV1 {

    /**
     * @param templateFilePath 模板文件, 可不存在的
     * @param dataSchema   数据结构
     * @throws Exception 参数检查异常
     */
    public DefaultWalV1(File templateFilePath, Class dataSchema) throws Exception {
        super(templateFilePath, dataSchema, null);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy