flash-thread-pool
flash-thread-pool copied to clipboard
Results
1
flash-thread-pool issues
Sort by
recently updated
recently updated
newest added
学习代码时候发现, ```java // 阻塞地从队列里获取一个任务 private Runnable getTask() { boolean timed = workCount.get() > corePoolSize; try { return timed ? workQueue.poll(keepAliveTime, timeUnit) : workQueue.take(); } catch (InterruptedException e) { return null;...