sealed abstract class WriteCommand extends Command
Ordering
- Alphabetic
- By Inheritance
Inherited
- WriteCommand
- Command
- HasFailureMessage
- Message
- NoSerializationVerificationNeeded
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def ++:(writes: Iterable[WriteCommand]): WriteCommand
Prepends this command with a number of other writes.
Prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created
CompoundWrite
. - def +:(other: SimpleWriteCommand): CompoundWrite
Prepends this command with another
Write
orWriteFile
to form aCompoundWrite
. - def failureMessage: CommandFailed
- Definition Classes
- Command → HasFailureMessage
- def prepend(writes: [WriteCommand]): WriteCommand
Java API: prepends this command with a number of other writes.
Java API: prepends this command with a number of other writes. The first element of the given Iterable becomes the first sub write of a potentially created
CompoundWrite
. - def prepend(that: SimpleWriteCommand): CompoundWrite
Java API: prepends this command with another
Write
orWriteFile
to form aCompoundWrite
.
Common interface for all write commands.