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

io.hydrosphere.mist.worker.WorkerDescription.scala Maven / Gradle / Ivy

package io.hydrosphere.mist.worker

private[mist] case class WorkerDescription (val namespace: String,
                                            val address: String) {
  override def toString(): String = {
    namespace + "\t" + address
  }

  def length(): List[Int] = {
    List(namespace.length, address.length)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy