Finatra Thrift Server Lightbend Activator Template
A minimal Activator seed template for creating a Finatra Thrift server application.
Activator has been deprecated by Lightbend with a scheduled EOL at the end of 2017.
A simple client implementation
val client: PingService[Future] = ThriftMux.client
.withTracer(NullTracer)
.withStatsReceiver(NullStatsReceiver)
.newIface[PingService.FutureIface]("localhost:9999")
client.ping().onSuccess { response =>
println(s"response: $response")
}
Run the server using sbt
sbt run
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0