Skip to content

Commit

Permalink
feat: #167 Wrong or bad descriptions in DatamaintainDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
nroulon committed Sep 20, 2022
1 parent c6a162c commit e7bf4de
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ abstract class DatamaintainDriver(protected val uri: String) {
abstract fun listExecutedScripts(): Sequence<LightExecutedScript>

/**
* Executes the given script and inserts its execution in the database
* Executes the given script
*/
abstract fun executeScript(script: ScriptWithContent): Execution

/**
* Does not execute the given script, only inserts its execution in the database
* Inserts script execution in the database
*/
abstract fun markAsExecuted(executedScript: ExecutedScript): ExecutedScript

/**
* Does not execute the given script, only update its execution in the database
* Update script execution in the database
*/
abstract fun overrideScript(executedScript: ExecutedScript): ExecutedScript
}

0 comments on commit e7bf4de

Please sign in to comment.