Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed ConcurrentModificationException on BeaconManager #117

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/main/java/org/altbeacon/beacon/BeaconManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
Expand Down Expand Up @@ -569,12 +570,14 @@ private String callbackPackageName() {
}

private ServiceConnection beaconServiceConnection = new ServiceConnection() {
// Called when the connection with the service is established
public void onServiceConnected(ComponentName className, IBinder service) {
// Called when the connection with the service is established
public void onServiceConnected(ComponentName className, IBinder service) {
LogManager.d(TAG, "we have a connection to the service now");
serviceMessenger = new Messenger(service);
serviceMessenger = new Messenger(service);
synchronized(consumers) {
for (BeaconConsumer consumer : consumers.keySet()) {
Iterator<BeaconConsumer> consumerIterator = consumers.keySet().iterator();
while (consumerIterator.hasNext()) {
BeaconConsumer consumer = consumerIterator.next();
Boolean alreadyConnected = consumers.get(consumer).isConnected;
if (!alreadyConnected) {
consumer.onBeaconServiceConnect();
Expand Down