430431432433434435436437438439440
// he does not block this thread since we are doing time sensitive // processing of events. executor.execute(new Runnable() { public void run() { if (discoveryListener != null) { discoveryListener.serviceAdded(uri); } } }); } }
180181182183184185186187188189190
209210211212213214215216217218219
228229230231232233234235236237238
// he does not block this thread since we are doing time sensitive // processing of events. executor.execute(new Runnable() { @Override public void run() { discoveryListener.serviceAdded(uri); } }); } }
432433434435436437438439440441442