The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
363 views

How to do concurrent modification testing for grails application

I'd like to run tests that simulate users modifying certain data at the same time for a grails application. Are there any plug-ins / tools / mechanisms I can use to do this efficiently? They don't ...
5
votes
3answers
368 views

Why does it.next() throw java.util.ConcurrentModificationException?

final Multimap<Term, BooleanClause> terms = getTerms(bq); for (Term t : terms.keySet()) { Collection<BooleanClause> C = new HashSet(terms.get(t)); if ...
3
votes
3answers
78 views
+50

java.util.ConcurrentModificationException On MapView

fellas I am facing very strange issue from many days. I am trying to update overlay frequently. So sometime I am getting "java.util.ConcurrentModificationException" when I touch on map or sometime ...
3
votes
3answers
83 views

Java List and recursion leads to Concurrent Modification Exception

The following function walks recursively through a list and divide it always by half and do something with the sublists. The recursion breaks when the listsize is 2. I know a concurrent modification ...
3
votes
4answers
61 views

ConcurrentModificationException, clarification needed

The following mockup code ends up in ConcurrentModificationException, that happens (as i understand it), due to the fact that i am iterating over a set, which i am modifying. Set<String> data = ...
3
votes
2answers
251 views

Best practices for trapping a unhandle runtime Exception for JAVA on the Android os?

During a process that I have firing off during a e3roid scene population on the android I keep coming across exceptions that I want to completely trap. Perhaps I need to create a back exception ...
3
votes
4answers
130 views

Is there an accepted best practice in Java for deleting a list element while iterating over the list?

I"m finding conflicting advice over the best way to avoid a ConcurrentModificationException while doing this: List<Apple> Apples = appleCart.getApples(); for (Apple apple : Apples) ...
3
votes
3answers
323 views

ConcurrentModificationException (Java)

Exception in thread "main" java.util.ConcurrentModificationException Squash the PC dirties the room Violet. The room's state is now dirty Lily the animal growls The Animal Lily left the room and goes ...
3
votes
3answers
1k views

ConcurrentModificationException when remove element from a java.util.List while iterating the list

@Test public void testListCur(){ List<String> li=new ArrayList<String>(); for(int i=0;i<10;i++){ li.add("str"+i); } for(String st:li){ ...
3
votes
3answers
453 views

In Java how can this throw a ConcurrentModificationException in a single threaded program?

I was reading this "Freuqent Java concurrency problems" question and got confused by an answer talking about java.util.ConcurrentModificationException. My understanding of the answer is that this can ...
3
votes
3answers
548 views

Performance difference between Iterator Class and foreach construct

I have the following code running, but I sometimes get some sort of concurrency exception when running it. ArrayList<Mob> carriers = new ArrayList<Mob>(); ArrayList<Mob> mobs = new ...
2
votes
3answers
65 views

concurrent modification exception java, I dont think I can use iterator here?

I have a list I need to iterate over and delete certain items. I can't use an iterator because I need to call methods for each item (such as ls.getStatus()) which doesn't work with an iterator. If ...
2
votes
3answers
176 views

How to clear all the elements in the String array in java?

I am getting java.util.ConcurrentModificationException since I am trying to load the elements dynamically, so I would like to clear all the elements in it. Kindly guide me on this how to clear on the ...
2
votes
3answers
69 views

Java Programming Error: java.util.ConcurrentModificationException

I'm writing a program as part of tutorial for a beginner Java student. I have the following method and whenever I run it, it gives me the following exception: ...
2
votes
2answers
81 views

Does Java have a data structure that supports Concurrent Modification?

I'm making a game in Java. Every enemy in the game is a thread and they are constantly looping through the game's data structures (I always use the class Vector). Lately I have been getting the ...
2
votes
3answers
193 views

java.util.ConcurrentModificationException

Note: I am aware of the Iterator#remove() method. In the following code sample, I don't understand why the List.remove in main method throws ConcurrentModificationException but not in the remove ...
2
votes
4answers
162 views

Modifying a Collection while iterating using for-each loop

If I modify a Collection while iterating over it using for-each loop, it gives ConcurrentModificationException. Is there any workaround?
2
votes
2answers
60 views

How to Thread.join() on all elements of a list of changing size?

Lets say I have a large number of worker threads all actively processing, and a supervisor thread that waits for them all to complete. Traditionally I could do something like: for(Worker w:staff){ ...
2
votes
2answers
2k views

Problem with java.util.ConcurrentModificationException in Android animation

There is something I miss with the notion of Synchronizing code in Android. Scenario There are always 3 items drawn on the screen. Each image is stored in a ArrayList (lstGraphics). For this purpose ...
2
votes
2answers
310 views

How do disk controllers handle concurrent writes to same sector in absence of write barriers?

When I open a file with O_DIRECT|O_ASYNC and do two concurrent writes to the same disk sector, without a fsync or fdatasync in between, does the linux disk subsystem or the Hardware disk controllers ...
2
votes
6answers
998 views

How can I iterate over an object while modifying it in Java? [closed]

Possible Duplicates: Java: Efficient Equivalent to Removing while Iterating a Collection Removing items from a collection in java while iterating over it I'm trying to loop through ...
1
vote
2answers
34 views

Solving a ConcurrentModificationException

I am writing a little game which has many circles moving on the screen. I am managing the circles in two threads as following: public void run() { int stepCount = 0; int dx; int dy; ...
1
vote
1answer
30 views

PostgreSQL + Rails concurrency clarification

I'm building a background job that's updating users' statistics for a web application. The job currently takes 55-60 seconds, and I'm concerned about what would happen if a user were to try to load ...
1
vote
4answers
93 views

Synchronizing threads in Java

I have two threads modifying the same object, lets say MyObject, and so have synchronized the object. But in one of the threads another object is modified and in so doing has to call MyObject. I.e. ...
1
vote
1answer
20 views

How best to handle a many-to-many concurrency conflict?

We have an application feature similar to gmail's labels - you can 'tag' the items. Now this is a concurrent application i.e., this so called 'whiteboard' is editable by multiple users - which means ...
1
vote
7answers
61 views

I keep getting java.util.concurrentmodificationexception.. How to fix this?

I've been working on this snippet of code. Here is the pseudocode of what I want to happen: a.check if sections(which is a list) size is 0. b.if sections size is 0, then automatically enroll the ...
1
vote
1answer
35 views

ConcurrentModification exception in honeycomb

I'm getting this error while working on map (Drawing line on map using GetDirection API). I have used CopyOnWriteArrayList still it sometimes throws ConcurrentModification exception. ...
1
vote
5answers
148 views

What code is required to continuously loop though a HashMap?

Currently my code is causing intermittent ConcurrentModificationException errors, probably because of the way I am looping through the HashMap: for (Map.Entry<String, Entity> entry : ...
1
vote
2answers
152 views

Avoiding ConcurrentModificationException on List by making a shallow copy

I have a class like the following: class Test { private LinkedList<Person> persons = new LinkedList<Person>; public synchronized void remove(Person person) { ...
1
vote
4answers
182 views

concurrentModificationException

With the snippet below I am, attempting to process a spreadsheet, with the twist of needing to exclude ad hoc columns. I know the crude way I am doing it, put the exceptions in an ArrayList and ...
1
vote
1answer
1k views

ConcurrentModificationException using mylocation overlay and timer

this problem has been doing my head in and I hope you can help! I've found the answers to a number of issues here before and hoping you people can work your magic again :) Ok so part of my app uses ...
1
vote
2answers
928 views

java.util.ConcurrentModificationException on ArrayList

I have a Server class and a Timer inside it which is supposed to clear dead clients (clients who crashed). I followed the example below by locking the collection when the Timer iterates over the users ...
1
vote
2answers
226 views

Another ConcurrentModificationException question

I've searched StackOverflow and there are many ConcurrentModificationException questions. After reading them, I'm still confused. I'm getting a lot of these exceptions. I'm using a "Registry" setup to ...
1
vote
3answers
288 views

synchronized block in JSP tag class

I am trying to find answer for the following ,for the past couple of days ,but couldnt find comprehensive answer Problem Statement I have a custom JSP tag class which handles a web form submission ...
1
vote
4answers
401 views

Why does one loop throw a ConcurrentModificationException, while the other doesn't?

I've run into this while writing a Traveling Salesman program. For an inner loop, I tried a for(Point x:ArrayList<Point>){ but when adding another point to that list resulted in a ...
0
votes
1answer
62 views

Java - ConcurrentModificationException

The following piece of code throws a ConcurrentModificationException almost every time it is called. The second piece of code does not throw the exception, however it is not the correct logic that I ...
0
votes
7answers
60 views

Is it possible that I get ConcurrentModificationException when all the methods in my program are synchronized?

I get a ConcurrentModificationException even though I made all the methods of the whole program synchronized (including static methods and the main method). I don't have hidden iterators. How is ...
0
votes
0answers
10 views

How to handle frquently updated field when dealing with object?

I have to develop a system that'll track click on some link for our customers. So our customer pay for a Package, which are like this class Package{ int ID; int ClickCountRemaining; } So when a ...
0
votes
1answer
21 views

Removing an object from the duplicate ArrayList only

I've copied an ArrayList over as so: MyList2 = MyList1; In an attempt to load MyList2's objects with the ones which MyList1 has. Now as I iterate through MyList2, I it.remove() some objects, but ...
0
votes
3answers
85 views

Calling a method from within a synchronized method

I'm facing a strange problem which has made me wonder what exactly happens in a synchronized method. Let's say there is a method synchronized public void example(){ //...code int i=call(); ...
0
votes
5answers
273 views

Sudoku solver with Exception in thread “main” java.util.ConcurrentModificationException on its Iterator

I'm getting the following errors: Exception in thread "main" java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry(HashMap.java:810) at ...
0
votes
1answer
156 views

ANdroid Serialization causes ConcurrentModificationException. How can I avoid this?

On serialization my object which is a custom class, holding various ArrayLists, every so often I get a Concurrent Mod Exception. Clearly one or more of the arraylists is throwing this. But I don't ...
0
votes
1answer
396 views

ConcurrentModificationException in Android

First of all I would apologize for ask again this question, but I don't found a solution for my problem yet. I have a app where I can locate myself with a MyLocationOverlay, and I draw my friends' ...
0
votes
1answer
199 views

Move current object on iterator to end of list

I'm having a problem on Java using Iterator (LinkedList.iterator()) object. In a looping, I need move a iterator object from some place to end of list. For instance: final Iterator<Transition> ...
0
votes
1answer
74 views

Removing nodes from a tree properly

I have the following function that prunes a tree data structure : public static void pruneTree(final ConditionTreeNode treeNode) { final List<ConditionTreeNode> subTrees = ...
0
votes
1answer
41 views

ConcurrentModificationError on Vector

What I am trying to accomplish here is to remove a "blossom" from the Vector whenever a collision is detected. However, I keep getting a ConcurrentModificationError. It messes up when I try to remove ...
0
votes
0answers
75 views

Eclipse Concurrent Modification Exception

While opening Eclipse Helios , i get 'initializing Java Tooling' problem . Sources of the project donot appear in the project explorer window of eclipse. I work with Tomcat6.0 and Jboss6.0 in ...
0
votes
1answer
2k views

java.util.AbstractList$Itr.checkForComodification Triple Events

I run a server and it has an event handler that handles a timing system When I run 3 of them in a row, it gives this exception Exception in thread "Thread-8" ...
0
votes
2answers
247 views

I get the following exception: “java.util.ConcurrentModificationException”

I'm getting a "An exception occurred: java.util.ConcurrentModificationException" when I run this piece of code. Does anyone here see what the problem is? public void mudaDeEstado() { Luz luz = ...
0
votes
2answers
150 views

What is the best practice to prevent a sporadic ConcurrentModificationException in Java?

Which code sequence for iterating over a list or map prevent ConcurrentModificationException? We have repeatedly and sporadic ConcurrentModificationException in our code. There are 2 causes for the ...

1 2