case class ComplexCommand[A, Mat](parser: MessageParser[A], flow: Flow[CommandMessage[A], CommandError, Mat]) extends Product with Serializable
A constructed command execution.
- A
The argument type of the command
- Mat
The materialized result of creating this command
- Source
- command.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ComplexCommand
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ComplexCommand(parser: MessageParser[A], flow: Flow[CommandMessage[A], CommandError, Mat])
Value Members
- val flow: Flow[CommandMessage[A], CommandError, Mat]
- val parser: MessageParser[A]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toNamed(Parser: StructuredPrefixParser): NamedComplexCommand[A, Mat]
Converts this command into a named command.
Converts this command into a named command.
- Parser
The prefix parser to use