akka.grpc.interop.GrpcClient.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-grpc-interop-tests_2.13 Show documentation
Show all versions of akka-grpc-interop-tests_2.13 Show documentation
Akka gRPC - Support for building streaming gRPC servers and clients on top of Akka Streams.
/*
* Copyright (C) 2018-2023 Lightbend Inc.
*/
package akka.grpc.interop
/**
* Glue code to start a gRPC client (either akka-grpc or io.grpc) to test with
*/
abstract class GrpcClient {
def run(args: Array[String]): Unit
}