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

/**
 * Represents free resources available on an executor.
 */
private[spark]
class WorkerOffer(val executorId: String, val hostname: String, val cores: Int) {
}