pl.allegro.tech.servicemesh.envoycontrol.config.service.ServiceContainer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of envoy-control-tests Show documentation
Show all versions of envoy-control-tests Show documentation
Production-ready Control Plane for Service Mesh based on Envoy Proxy.
package pl.allegro.tech.servicemesh.envoycontrol.config.service
interface ServiceContainer {
fun ipAddress(): String
fun port(): Int
fun start()
fun stop()
}