com.firefly.example.reactive.coffee.store.dao.OrderDAO Maven / Gradle / Ivy
package com.firefly.example.reactive.coffee.store.dao;
import com.firefly.example.reactive.coffee.store.model.Order;
import com.firefly.reactive.adapter.db.ReactiveSQLConnection;
import reactor.core.publisher.Mono;
import java.util.List;
/**
* @author Pengtao Qiu
*/
public interface OrderDAO {
Mono> insertBatch(List list, ReactiveSQLConnection connection);
}