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

com.dream.configs.ApplicationConfig Maven / Gradle / Ivy

The newest version!
package com.dream.configs;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;

@Configuration
@EnableScheduling
public class ApplicationConfig {

    @Bean
    public ObjectSSEEmitter dreamSSEEmitter() {
        ObjectSSEEmitter dreamSSEEmitter = new ObjectSSEEmitter();
        return dreamSSEEmitter;
    }

    @Bean
    public ObjectSSEEmitter commentSSEEmitter() {
        ObjectSSEEmitter commentSSEEmitter = new ObjectSSEEmitter();
        return commentSSEEmitter;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy