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

com.querydsl.core.dml.ReactiveDMLClause Maven / Gradle / Ivy

The newest version!
package com.querydsl.core.dml;

import reactor.core.publisher.Mono;

/**
 * Parent interface for DML clauses
 *
 * @param  concrete subtype
 */
public interface ReactiveDMLClause> {

  /**
   * Execute the clause and return the amount of affected rows
   *
   * @return amount of affected rows or empty if not available
   */
  Mono execute();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy