// Private -------------------------------------------------------
private void waitForRunnablesToComplete()
{
// Wait for any create objects runnable to complete
Future future = new Future();
executor.execute(future);
boolean ok = future.await(10000);
if (!ok)
{
BridgeImpl.log.warn("Timed out waiting to stop");
}