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

com.avito.runner.service.worker.device.DeviceCoordinate.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2024.32
Show newest version
package com.avito.runner.service.worker.device

public sealed class DeviceCoordinate {

    public abstract val serial: Serial

    public data class Kubernetes(
        override val serial: Serial.Remote,
        val podName: String
    ) : DeviceCoordinate()

    public data class Local(override val serial: Serial.Local) : DeviceCoordinate() {

        public companion object
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy