Java package which contains utility classes commonly useful in concurrent programming. This package includes a few small standardized extensible frameworks, as well as some classes that provide useful functionality and are otherwise tedious or difficult to implement.
0
votes
1answer
36 views
Java Executor not working on JdbcTemplate
I am trying to execute a query with a jdbcTemplate using an executor object but for some reason the program doesn't go inside the jdbcTemplate.
ExecutorService executor = ...
0
votes
1answer
46 views
Extract and Insert concurrently into database using JdbcTemplate and BlockingQueue
I am extracting thousands of rows from one database table and inserting into another database table. I don't want to load all the records into memory and then insert into the other database.
Because ...
0
votes
2answers
39 views
how to call async class more than once in an activity?
I have AsyncClass in my activity, which is used to upload data to server on a button click. If uploads is success. I am setting IsUploaded=true and updating that value in my local database for the ...
3
votes
4answers
65 views
Java's ExecutorService performance
I have a main thread which dispatches jobs to a thread pool. I'm using Java's Executor framework.
From the profiler (VirtualVM) I can see each thread's activity: I can see that the main thread is ...
3
votes
3answers
61 views
Java synchronized thread
Not sure whether this D class thread is correct. Is there a race condition, is i supposed to be in a synchronized block when accessed? What if D is an outer class, and the A instance was passed to a D ...
0
votes
1answer
23 views
In ConcurrentHashMap, why don't use ReentrantReadWriteLock in place of ReentrantLock on segment
Since the ConcurrentHashMap can't 100% secure consistency on the write operation (i.e. size()), using the ReentrantReadWriteLock(or it's derived class by customizing) instead can improve the ...
0
votes
2answers
38 views
Reinitialize fix delay in ScheduledExecutorService
As per my requirement, I have to execute some particular code after certain period of time. To do the same I have chose ScheduledExecutorService.scheduleWithFixedDelay(runnable, 0, 5, ...
2
votes
2answers
55 views
Impossible (?): NullPointerException on ConcurrentLinkedQueue.size()
I'm getting this NPE on IBM JVM, 1.6:
java.lang.NullPointerException at
java.util.concurrent.ConcurrentLinkedQueue.first(ConcurrentLinkedQueue.java:274) at
...
1
vote
1answer
51 views
Executors - Need for a LinkedBlockingQueue
When we talk about the processing of asynchronous events using an Executors service, why does creating a new fixed thread pool, involve the use of LinkedBlockingQueue ? The events which are arriving ...
0
votes
3answers
45 views
Memory Consistency - happens-before relationship in Java
While Reading java docs on Memory Consistency errors. I find points related to two actions that creates happen - before relationship.
When a statement invokes Thread.start, every statement that has ...
3
votes
2answers
89 views
Least value concurrent map
I require an implementation of a map,
that supports concurrency, and only stores the least/most value added (depending on the comparator).
Would the following code work?
class ...
0
votes
1answer
31 views
Daemon threads in ForkJoinPool
According to Java Doc 7:
Because ForkJoinPool uses threads in daemon mode, there is typically
no need to explicitly shutdown such a pool upon program exit
Are there no other advantages?
Is a ...
0
votes
2answers
52 views
Need simple explanation how “lock striping” works with ConcurrentHashMap
according to Java Concurrency in Practice, chapter 11.3.4 says:
Lock splitting can sometimes be extended to partition
locking on a variablesized set of independent objects, in which case
it is ...
3
votes
3answers
86 views
How does newCachedThreadPool cache thread
Per the comment of method public static ExecutorService newCachedThreadPool() in Executor Class:
Threads that have not been used for sixty seconds are terminated and
removed from the **cache**.
I ...
0
votes
4answers
74 views
Please explain final AtomicReference
can someone explain me this:
final AtomicReference<Integer> atomicReference = new AtomicReference<>(1);
atomicReference.set(2);
In what sense is final used?
1
vote
4answers
85 views
What´s the difference between AtomicReference<Integer> vs. AtomicInteger?
I don“t get the difference between these two:
AtomicReference<Integer> atomicReference = new AtomicReference<>(1);
vs.
AtomicInteger atomicInteger = new AtomicInteger(1);
Can someone ...
0
votes
1answer
62 views
Does using volatile to publish immutable objects are safe?
Recently I read "Java concurrency in practice"
Section --> "3.4.2 Example: Using volatile to publish immutable objects".
However; I can't quietly understand it.
Here is the situation!
Immutable ...
1
vote
3answers
43 views
Thread safe collection for indexed access
Do we have a thread-safe version of ArrayList that supports index-based access.
I could not find a counterpart for ArrayList in the concurrent package, as we have for ...
-2
votes
0answers
29 views
why there is no submitAll in ThreadPoolExecutor? [closed]
I am using ThreadPoolExecuter to execute callers.
In order to do it i use the submit method.
Can anyone tell me why there is no submitAll for submit callaction of callable tasks?
0
votes
2answers
48 views
ExecutorService shutdown
I am confused about the javadoc of ExecutorService#shutdown method. Aren't these contradictory statements?
Initiates an orderly shutdown in which previously submitted tasks are
executed, but no ...
1
vote
2answers
110 views
Java threads slow down towards the end of processing
I have a Java program that takes in a text file containing a list of text files and processes each line separately. To speed up the processing, I make use of threads using an ExecutorService with a ...
0
votes
0answers
91 views
AtomicInteger Vs synchronized int variable in java : performance difference
After going throught following question
Can synchronized blocks be faster than Atomics?
i wrote a simple program to compare the performance difference of AomicInteger and synchronized block ...
1
vote
2answers
68 views
Why does CopyOnWriteArrayList.get need no synchronization?
just had a look at class CopyOnWriteArrayList and I wondered why its get(...) method doesn't need any synchronization. The add(...) and set(...) methods change the underlying array in a mutex block ...
0
votes
2answers
38 views
Modifying values in ConcurrentHashMap
In ConcurrentHashMap there is concept of segmentation. What it means if two threads are trying to access ConcurrentHashMap they it gets divided in two blocks and default size of blocks is 16.
Now ...
0
votes
2answers
92 views
Parallel tasks in Java
Suppose I have a few tasks to run in parallel in Java. Each task returns either success or failure. Each task has an associated deadline. If a task does not finish by the deadline it is interrupted ...
0
votes
1answer
57 views
ExecutorService doesn't call run() in Runnable
I've come across a strange issue in the asmack library for Android. The library uses an ExecutorService to parse incoming packets like that:
private ExecutorService listenerExecutor;
...
1
vote
4answers
87 views
Semaphore of size 1 the best option?
If you have a resource that only once person should access at a time you could use a semaphore of size one or you could just use a single ReentrantLock instance?
What are the subtle difference that ...
1
vote
3answers
74 views
Probable false positive from Findbugs?
Please refer to the following code snippet(stripped off the redundant part to highlight the problematic case):
FindBugs is complaining that "Method does not release lock on all paths" . Is this a ...
6
votes
5answers
93 views
Clever asynchronous repaint in Java
I have a use-case coming from a GUI problem I would like to submit to your sagacity.
Use case
I have a GUI that displays a computation result depending on some parameters the user set in a GUI. For ...
4
votes
3answers
127 views
ExecutorService.submit(<callable>) taking more time?
I am trying to understand the utilities in java.util.concurrent package and learnt that we can submit callable objects to the ExecutorService, which returns Future, which is filled with the value ...
1
vote
1answer
51 views
ConcurrentHashMap Locks increase
As entries increase in the ConcurrentHashMap, rehashing will be done and new hash buckets will be formed (16 to 32).
Q: Will the locks(initially 16) will also increase(to 32) or 16 locks will look on ...
1
vote
2answers
64 views
How to test task performance, using multitheading?
I have some exercises, and one of them refers to concurrency. This theme is new for me, however I spent 6 hours and finally solve my problem. But my knowledge of corresponding API is poor, so I need ...
1
vote
3answers
138 views
Grails executor plugin callAsync block always taking the same values
I'm trying to use the executor plugin in grails but I'm having a problem which I am not able to solve.
Basically, i have a list of links that I want to crawl and I was having an issue where it was ...
1
vote
1answer
54 views
Java ā Is it OK to discard Future return values?
If an async method returns a Future object, but we don't care whether the underlying operation succeeds or fails, are there any adverse effects from calling the method and not storing the returned ...
2
votes
1answer
69 views
Does ConcurrentHashMap implementation use cloning in remove operation?
I was reading an IBM DeveloperWorks article to understand how ConcurrentHashMap is implemented. The section "removal operation" suggests that the removal operation is a two step process:
Find the ...
0
votes
4answers
59 views
Java ServiceExecutor terminating condition
I'm new to java executor stuff.
I'm using Java's ExecutorService to launch several threads to process data.
Executor executor = Executors.newFixedThreadPool(poolSize);
for(int i=0; i< 5;i++) ...
6
votes
3answers
181 views
AtomicInteger.incrementAndGet() vs. AtomicInteger.getAndIncrement()
When return value is not of interest, is there any (even irrelevant in practice) difference between AtomicInteger.getAndIncrement() and AtomicInteger.incrementAndGet() methods, when return value is ...
0
votes
0answers
238 views
Threads while looping video to JPanel using JavaFX
I'm working on a project for school at the moment where I'm trying to create an image gallery and video player. In the welcome-window I've created two JPanels with MouseListeners, one to hold an image ...
0
votes
5answers
112 views
Coordinate threads without wait/notify if possible
Besides wait/notify is there a cleaner way of notification of events among threads?
E.g. if I want Thread X to notify ThreadY that something occured is there a better construct in concurrent package ...
2
votes
2answers
90 views
Design issue: is this doable only with producer/consumer?
I'm trying to increase performance of indexing my lucene files. For this, I created a worker "LuceneWorker" that does the job.
Given the code below, the 'concurrent' execution becomes significantly ...
0
votes
1answer
143 views
Java Concurrent Object Pool?
I tried to integrate an external non-thread-safe library to my web project; I found out that it's too expensive to create an instance of this object for each client thread.
As a result, I would like ...
1
vote
1answer
120 views
Java ScheduledExecutorService producer\consumer
I have the next project:
Spring(3.2)-based Web application(Tomcat 7), in background I have several tasks.
I have a queue with some information for processing. This queue is updating ...
-2
votes
1answer
100 views
Regarding countdown latch implementation
I have been going through the program which starts three threads and print their corresponding value such that T3 is executed first, then the T1 thread, and lastly the T2 thread is executed. Below is ...
1
vote
1answer
86 views
How can I implement this concurrency situation using java semaphores?
I want to implement this classic toilet room entrance problem using the semaphores provided by the java library.
The scenario is: there's a public bathroom which can be used by a maximum of 4 women ...
0
votes
1answer
128 views
How to pass data between two threads spawned by ScheduledExecutorService in Android?
I' m trying to implement a producer-consumer pattern in Android via ScheduledExecutorService. So, I have created a producer worker thread which loads data from the web site and consumer thread which ...
3
votes
3answers
82 views
Is an executor meant to be reused?
Is an executor object meant to be reused after a shutdown? I mean if I call shutdown or shutdownNow after the executor is terminated, should I do new to create a new thread pool or is it possible to ...
5
votes
5answers
173 views
Is ConcurrentHashMap totally safe?
this is a passage from JavaDoc regarding ConcurrentHashMap. It says retrieval operations generally do not block, so may overlap with update operations. Does this mean the get() method is not thread ...
0
votes
2answers
72 views
Java avoid locking in case of disjoint sets
I have a use case like this. One of my method takes a List as parameter. I need to protect the critical section if and only if atleast one of the object is already locked by some other thread. How can ...
0
votes
2answers
112 views
Using atomic for generating unique id
class ABC{
private static Random random = new Random();
private static AtomicLong uniqueLongId = new AtomicLong(System.currentTimeMillis());
public static long getUniqueLongId(){
long id ...
3
votes
4answers
126 views
Restricting thread count and Java concurrency
I couldn't find an example of this specific case using the latest JAVA concurrent routines.
I plan to use threads to process items from an open queue which may contain 0 to thousands requests. I ...




