Authored by LUOXC

rename

... ... @@ -21,7 +21,7 @@ import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Supplier;
@Slf4j(topic = "notice")
@Slf4j(topic = "NoticeFacade")
public class BaseNoticeFacade {
private ExecutorService executorService = new ThreadPoolExecutor(5, 10,
... ...
... ... @@ -14,7 +14,7 @@ import java.util.function.Function;
import java.util.function.Supplier;
@Service
@Slf4j
@Slf4j(topic = "NoticeFacade")
public class BuyerNoticeFacade extends BaseNoticeFacade {
@Autowired
... ...
... ... @@ -38,7 +38,7 @@ import java.util.concurrent.TimeUnit;
* Created by chenchao on 2018/10/8.
*/
@Service
@Slf4j(topic = "notice")
@Slf4j(topic = "NoticeFacade")
public class InBoxFacade extends BaseNoticeFacade{
private ExecutorService executorService = new ThreadPoolExecutor(5, 10, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<>(1000), new InBoxThreadFactory());
... ...