Java實現流控-Semaphore__Java

來源:互聯網
上載者:User

網上類似文章很多,不多說,直接上代碼:

[java]  view plain  copy /**   * 流控類(Semaphore實現)   *    * @author ln   *   */   public class FlowControl {          /**       * 最大訪問量       */       private static final int MAX_ACCESS_COUNT = 20;          /**       * 只能有MAX_ACCESS_COUNT個線程數同時訪問       */       private static final Semaphore semaphore = new Semaphore(MAX_ACCESS_COUNT);          public static void main(String[] args) {           // 線程池           ExecutorService exec = Executors.newCachedThreadPool();              // 類比30個用戶端           for (int i = 0; i < 30; i++) {               Runnable run = new Runnable() {                   @Override                   public void run() {                       try {                           // 1秒鐘內得不到許可,則丟棄訪問。                           if (semaphore.tryAcquire(1, TimeUnit.SECONDS)) {                               System.out.println("正在執行...");                               //做一些事情...                               Thread.sleep(2 * 1000);                               System.out.println("執行完畢。");                           } else {                               System.out.println("訪問被拒絕。。。");                           }                       } catch (InterruptedException e) {  

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.