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

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

There is a newer version: 0.10.0
Show newest version
package io.hydrosphere.mist.worker

private[mist] case class WorkerDescription (namespace: String, 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