public Set<String> getConnections() {
   mutex.readLock().lock();
   try {
     return routingTable.devices(localDevice.getBluetoothAddress());
   } finally {
     mutex.readLock().unlock();
   }
 }