MCPcopy Index your code
hub / github.com/questdb/questdb / joinThread

Method joinThread

core/src/main/java/io/questdb/ServerMain.java:479–489  ·  view source on GitHub ↗
(Thread thread, boolean ignoreInterrupt)

Source from the content-addressed store, hash-verified

477 }
478
479 private void joinThread(Thread thread, boolean ignoreInterrupt) {
480 if (thread != null) {
481 try {
482 thread.join();
483 } catch (InterruptedException e) {
484 if (!ignoreInterrupt) {
485 Thread.currentThread().interrupt();
486 }
487 }
488 }
489 }
490
491 protected <T extends Closeable> T freeOnExit(T closeable) {
492 return freeOnExit.register(closeable);

Callers 2

awaitStartupMethod · 0.95
closeMethod · 0.95

Calls 1

joinMethod · 0.65

Tested by

no test coverage detected