mirror of https://github.com/longtai-cn/hippo4j
parent
70cd583577
commit
c209a094de
@ -1,41 +0,0 @@
|
|||||||
/*
|
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
|
||||||
* this work for additional information regarding copyright ownership.
|
|
||||||
* The ASF licenses this file to You 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 cn.hippo4j.example.config.consul.config;
|
|
||||||
|
|
||||||
import cn.hippo4j.core.executor.DynamicThreadPool;
|
|
||||||
import cn.hippo4j.core.executor.support.ThreadPoolBuilder;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
|
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dynamic thread-pool config.
|
|
||||||
*/
|
|
||||||
@Slf4j
|
|
||||||
@Configuration
|
|
||||||
public class DynamicThreadPoolConfig {
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
@DynamicThreadPool
|
|
||||||
public ThreadPoolExecutor messageConsumeDynamicExecutor() {
|
|
||||||
String threadPoolId = "message-consume";
|
|
||||||
return ThreadPoolBuilder.buildDynamicPoolById(threadPoolId);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
package cn.hippo4j.example.config.consul.controller;
|
|
||||||
|
|
||||||
import cn.hippo4j.config.springboot.starter.config.BootstrapConfigProperties;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
@RestController
|
|
||||||
public class TestController {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private ThreadPoolExecutor messageConsumeDynamicExecutor;
|
|
||||||
|
|
||||||
@GetMapping("/hippo4j-consul/test")
|
|
||||||
public int test() {
|
|
||||||
int maximumPoolSize = messageConsumeDynamicExecutor.getMaximumPoolSize();
|
|
||||||
int corePoolSize = messageConsumeDynamicExecutor.getCorePoolSize();
|
|
||||||
log.info("corePoolSize: {}, maximumPoolSize: {}", corePoolSize, maximumPoolSize);
|
|
||||||
return corePoolSize + maximumPoolSize;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue