-
Notifications
You must be signed in to change notification settings - Fork 0
IBM tutorials
illyfrancis edited this page Mar 3, 2014
·
10 revisions
http://www.ibm.com/developerworks/library/j-nothreads/
http://www.ibm.com/developerworks/training/kp/j-kp-concurrency/
-
5 things didn't know about j.u.c part 1
TimeUnitCopyOnWriteArrayListBlockingQueueConcurrentMapSynchronousQueues
-
5 things... part 2
-
Semaphorefor throttling CountDownLatch-
Executorinstead of creatingThreads directlyExecutor exec = getAnExecutorFromSomeplace(); exec.execute(new Runnable() { ... });-
ExecutorServiceExecutorService executor = Executors.newFixedThreadPool(..)
-
CallableandFuture
ScheduledExecutorService- Timeout methods
- also look at
.locksand.atomicpackage,CyclicBarrier
-
http://www.ibm.com/developerworks/training/kp/j-kp-actorconcurrency/