Invitation API and two (untested) implementations.

This commit is contained in:
akwizgran
2011-10-27 17:52:03 +01:00
parent 59485fe392
commit 48d638746c
26 changed files with 834 additions and 251 deletions

View File

@@ -51,7 +51,10 @@ class PollerImpl implements Poller, Runnable {
} else {
try {
wait(p.time - now);
} catch(InterruptedException ignored) {}
} catch(InterruptedException e) {
if(LOG.isLoggable(Level.WARNING))
LOG.warning(e.getMessage());
}
}
}
}