All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.powerscala.command.CommandManager.scala Maven / Gradle / Ivy

The newest version!
package org.powerscala.command

trait CommandManager {
  def implementation: CommandImplementation
  def interpreter: CommandInterpreter

  def process(command: Command): Unit
  def send(command: Command): Unit = {
    val line = interpreter.fromCommand(command)
    implementation.send(line)
  }

  implementation.start(this)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy