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

com.hubspot.singularity.config.CustomExecutorConfiguration Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.hubspot.singularity.config;

import javax.validation.constraints.Min;

public class CustomExecutorConfiguration {
  @Min(0)
  private double numCpus = 0;

  @Min(0)
  private int memoryMb = 0;

  public double getNumCpus() {
    return numCpus;
  }

  public void setNumCpus(double numCpus) {
    this.numCpus = numCpus;
  }

  public int getMemoryMb() {
    return memoryMb;
  }

  public void setMemoryMb(int memoryMb) {
    this.memoryMb = memoryMb;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy