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

com.arextest.schedule.dao.RepositoryWriter Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.dao;

import java.util.List;
import org.apache.commons.collections4.CollectionUtils;

/**
 * Created by wang_yc on 2022/1/20
 */
public interface RepositoryWriter {

  default boolean save(List itemList) {
    if (CollectionUtils.isEmpty(itemList)) {
      return false;
    }
    for (T item : itemList) {
      this.save(item);
    }
    return true;
  }

  boolean save(T item);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy