com.synhaptein.migmongo.commands.ChangeSet.scala Maven / Gradle / Ivy
The newest version!
package com.synhaptein.migmongo.commands
import com.mongodb.casbah.MongoDB
trait ChangeSet {
val changeId: String
val author: String
}
case class SyncChangeSet(changeId: String, author: String, changes: MongoDB => Unit) extends ChangeSet
case class AsyncChangeSet(changeId: String, author: String, changes: MongoDB => Unit) extends ChangeSet
© 2015 - 2025 Weber Informatics LLC | Privacy Policy