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

io.mongock.api.config.TransactionStrategy Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package io.mongock.api.config;


public enum TransactionStrategy {

  EXECUTION, CHANGE_UNIT;

  public boolean isTransaction() {
    return this == EXECUTION ||  this == CHANGE_UNIT;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy