How can I make use of Semaphore class in order to control number of threads that have an access to an object?
|
|
|||||||||||
|
|
One more good thing about using semaphore to control access to resouce is you can resize your semaphore at runtime. For eg you can have some use case where you want to allow more user to access resource based on some business logic and then reduce it again. Sample code for re sizable semaphore public class ResizeableSemaphore extends Semaphore {
} |
|||
|
|
|
This is a great example of how Semaphore can be used to limit concurrent access to an object: http://technicalmumbojumbo.wordpress.com/2010/02/21/java-util-concurrent-java-5-semaphore/ The key points being:
|
|||
|
|
|
Just use:
there's an extensive example on how to use it in the javadoc: http://download.oracle.com/javase/6/docs/api/java/util/concurrent/Semaphore.html |
|||
|
|
|
Perhaps you could read the answer to this question, and have a look at this example |
|||
|