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

in.ashwanthkumar.suuchi.rpc.PingService.scala Maven / Gradle / Ivy

There is a newer version: 0.3.5
Show newest version
package in.ashwanthkumar.suuchi.rpc

import in.ashwanthkumar.suuchi.rpc.generated.PingServiceGrpc
import in.ashwanthkumar.suuchi.rpc.generated.SuuchiRPC.{PingRequest, PingResponse}
import io.grpc.stub.StreamObserver

class PingService extends PingServiceGrpc.PingServiceImplBase {
  override def ping(request: PingRequest, responseObserver: StreamObserver[PingResponse]): Unit = {
    responseObserver.onNext(PingResponse.newBuilder().setStatus(true).build())
    responseObserver.onCompleted()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy