ThreadPoolExecutor的实现发送消息

本文探讨了在发送消息场景中,如何通过ThreadPoolExecutor来提高效率并充分利用CPU资源。介绍了具体的代码实现,以实现线程池发送消息的方式。
摘要由CSDN通过智能技术生成

ThreadPoolExecutor的实现发送消息

1.场景
最近在做发送消息的时,为了提高效率,并让CPU充分利用,利用线程池发送消息
2.代码实现

public class TestThreadPoolExecutor {

  private static ThreadPoolExecutor threadPoolExecutor;

  static {
    ThreadFactory factory = new Builder().namingPattern("example-schedule-pool-%d").build();
    threadPoolExecutor = new ThreadPoolExecutor(100,
        100, 60, TimeUnit.SECONDS,
        new LinkedBlockingQueue<>(), factory, new AbortPolicy());
    threadPoolExecutor.allowCoreThreadTimeOut(true);
    Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
      @Override
      public void run() {
        threadPoolExecutor.shutdown();
      }
    }));

  }


  public static Boolean sendMsg(int i) {
    Future<Boolean> submit = threadPoolExecutor.submit(new Callable<Boolean>() {

      @Override
      public Boolean call() throws Exception {
        return doCommonSend(i);
      }
    });
    try {
      return submit.get();
    } catch (InterruptedException e) {
      e.printStackTrace();
    } catch (ExecutionException e) {
      e.printStackTrace();
    }
    return false;
  }

  public static boolean doCommonSend(int a) {
    System.out.println("doCommonSend" + a);
    if (a == 0) {
      return false;
    }
    return true;
  }

  public static void main(String[] args) {

    for (int i = 0; i < 10000000; i++) {
    sendMsg(i);
    }
  }

结果
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值