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

org.octopusden.octopus.vcsfacade.config.JobProperties.kt Maven / Gradle / Ivy

There is a newer version: 3.0.21
Show newest version
package org.octopusden.octopus.vcsfacade.config

import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.ConstructorBinding

@ConstructorBinding
@ConfigurationProperties("vcs-facade.job")
data class JobProperties(val fastWorkTimoutSecs: Int,val retryIntervalSecs: Int,  val executor: ExecutorProperties) {
    data class ExecutorProperties(val corePoolSize: Int, val maxPoolSize: Int, val queueCapacity: Int)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy