Skip to content

Instantly share code, notes, and snippets.

@kasramp
Created October 9, 2018 21:41
Show Gist options
  • Save kasramp/fee809820dca2f62e8a7a9d06f186e83 to your computer and use it in GitHub Desktop.
Save kasramp/fee809820dca2f62e8a7a9d06f186e83 to your computer and use it in GitHub Desktop.
ExecutorService calling a Callable
Future<?> future = executorService.submit(aCallable);
future.get(2, TimeUnit.seconds);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment