413414415416417418419420421422423
// 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.serviceRemoved(uri); } } }); } }
163164165166167168169170171172173
188189190191192193194195196197198
208209210211212213214215216217218
// he does not block this thread since we are doing time sensitive // processing of events. executor.execute(new Runnable() { @Override public void run() { discoveryListener.serviceRemoved(uri); } }); } }
415416417418419420421422423424425
207208209210211212213214215216217