aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala/spark/scheduler/cluster/WorkerOffer.scala
blob: 1e83f103e7f938ad24f5b746326387a0ce083405 (plain) (blame)
1
2
3
4
5
6
7
package spark.scheduler.cluster

/**
 * Represents free resources available on a worker node.
 */
class WorkerOffer(val slaveId: String, val hostname: String, val cores: Int) {
}