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

io.camunda.zeebe.spring.client.annotation.customizer.ZeebeWorkerValueCustomizer Maven / Gradle / Ivy

There is a newer version: 8.5.10
Show newest version
package io.camunda.zeebe.spring.client.annotation.customizer;

import io.camunda.zeebe.spring.client.annotation.value.ZeebeWorkerValue;

/**
 * This interface could be used to customize the {@link
 * io.camunda.zeebe.spring.client.annotation.ZeebeWorker} annotation's values. Just implement it and
 * put it into to the {@link org.springframework.context.ApplicationContext} to make it work. But be
 * careful: these customizers are applied sequentially and if you need to change the order of these
 * customizers use the {@link org.springframework.core.annotation.Order} annotation or the {@link
 * org.springframework.core.Ordered} interface.
 *
 * @see io.camunda.zeebe.spring.client.properties.PropertyBasedZeebeWorkerValueCustomizer
 */
public interface ZeebeWorkerValueCustomizer {

  void customize(final ZeebeWorkerValue zeebeWorker);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy