SINTEF-9012 / bglib

Java implementation of the BGAPI binary protocol for Bluegiga BLE112 Bluetooth low energy modules.
37 stars 14 forks source link

Synchronize listeners #13

Closed rasendubi closed 10 years ago

rasendubi commented 10 years ago

Java's synchronized blocks are reetrant, so it wasn't possible to unsubscribe from handler. This patch uses CopyOnWriteArrayList that makes it possible to remove listeners while iterating over a list.