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

com.arextest.schedule.beans.ProgressEventConfiguration Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.beans;

import com.arextest.schedule.progress.ProgressEvent;
import com.arextest.schedule.progress.impl.UpdateResultProgressEventImpl;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Created by Qzmo on 2023/6/20
 */
@Configuration
public class ProgressEventConfiguration {

  @Bean
  @ConditionalOnMissingBean
  public ProgressEvent progressEvent() {
    return new UpdateResultProgressEventImpl();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy