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

com.netflix.conductor.client.spring.ClientProperties Maven / Gradle / Ivy

/*
 * Copyright 2020 Netflix, Inc.
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. */ package com.netflix.conductor.client.spring; import java.time.Duration; import java.util.HashMap; import java.util.Map; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties("conductor.client") public class ClientProperties { private String rootUri; private String workerNamePrefix = "workflow-worker-%d"; private int threadCount = 1; private Duration sleepWhenRetryDuration = Duration.ofMillis(500); private int updateRetryCount = 3; private Map taskToDomain = new HashMap<>(); private Map taskThreadCount = new HashMap<>(); private int shutdownGracePeriodSeconds = 10; public String getRootUri() { return rootUri; } public void setRootUri(String rootUri) { this.rootUri = rootUri; } public String getWorkerNamePrefix() { return workerNamePrefix; } public void setWorkerNamePrefix(String workerNamePrefix) { this.workerNamePrefix = workerNamePrefix; } public int getThreadCount() { return threadCount; } public void setThreadCount(int threadCount) { this.threadCount = threadCount; } public Duration getSleepWhenRetryDuration() { return sleepWhenRetryDuration; } public void setSleepWhenRetryDuration(Duration sleepWhenRetryDuration) { this.sleepWhenRetryDuration = sleepWhenRetryDuration; } public int getUpdateRetryCount() { return updateRetryCount; } public void setUpdateRetryCount(int updateRetryCount) { this.updateRetryCount = updateRetryCount; } public Map getTaskToDomain() { return taskToDomain; } public void setTaskToDomain(Map taskToDomain) { this.taskToDomain = taskToDomain; } public int getShutdownGracePeriodSeconds() { return shutdownGracePeriodSeconds; } public void setShutdownGracePeriodSeconds(int shutdownGracePeriodSeconds) { this.shutdownGracePeriodSeconds = shutdownGracePeriodSeconds; } public Map getTaskThreadCount() { return taskThreadCount; } public void setTaskThreadCount(Map taskThreadCount) { this.taskThreadCount = taskThreadCount; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy