#
luxiaotao1123
2025-01-07 e14f937fac9ba2c9af1fffd4d37f0eba86292575
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.acs.manager.common.config;
 
import com.zy.acs.manager.core.domain.UnlockPathTask;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
 
import java.util.concurrent.LinkedBlockingQueue;
 
/**
 * Created by vincent on 12/19/2023
 */
@Configuration
@ComponentScan(value = "com.zy.acs.common.config")
public class BeanConfig {
 
    @Bean
    public LinkedBlockingQueue<UnlockPathTask> unlockTaskQueue() {
        return new LinkedBlockingQueue<>();
    }
 
}