399400401402403404405406407408409410411412413
public void run() { while (!stop) { try { /* acquire a context */ JNDIConnection dc = pool.connect(); /* do something */ Thread.sleep(rand.nextInt(1000)); /* release context */ dc.close(); nbaction++; } catch (Exception e) { e.printStackTrace(); break; }