trait DataStoreCommand[DS <: DataStore] extends Command
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- DataStoreCommand
- Command
- Runnable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
Concrete Value Members
-
def
loadDataStore(): DS
- Annotations
- @throws( ... )
-
def
run(): Unit
- Definition Classes
- Command → Runnable
-
def
subCommands: Seq[Command]
- Definition Classes
- Command
-
def
validate(): Option[ParameterException]
Opportunity for the command to perform complex validation across param values (e.g.
Opportunity for the command to perform complex validation across param values (e.g. check exclusive args, etc)
- returns
parameter exception if validation fails
- Definition Classes
- Command
-
def
withDataStore[T](method: (DS) ⇒ T): T
- Annotations
- @throws( ... )