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

molecule.sql.mysql.marshalling.RpcServer_mysql.scala Maven / Gradle / Ivy

The newest version!
package molecule.sql.mysql.marshalling

import akka.http.scaladsl.Http
import molecule.core.marshalling.MoleculeRpcServer_AkkaHttp
import scala.io.StdIn

/**
 * Server app serving http requests from client
 *
 * Run with
 *
 * sbt sqlPostgresJVM/run
 */
object RpcServer_mysql extends MoleculeRpcServer_AkkaHttp(Rpc_mysql) with App {

  Http()
    .newServerAt("localhost", 8080)
    .bind(moleculeRpcRoute)

  println("Started server at 127.0.0.1:8080, press enter to kill server")
  StdIn.readLine()
  system.terminate()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy