6869707172737475767778
// spawn a new thread an run the interceptor in it to verify that the interceptor properly starts the request context Thread thread = new Thread(new Runnable() { @Override public void run() { try { result.set(interceptor.aroundInvoke(ctx)); } catch (Exception e) { result.set(e); } } });