Java.util.concurrent: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 28: Line 28:




Future instances are used by [[https://kb.novaordis.com/index.php/Java.util.concurrent_Executors#future|executors]] to notify the caller of submitted task's completion.
Future instances are used by [[Java.util.concurrent_Executors#future|executors]] to notify the caller of submitted task's completion.
 
==Callable==

Revision as of 14:08, 14 June 2017



in process of being migrated from https://home.feodorov.com:9443/wiki/Wiki.jsp?page=JavaConcurrent

External

Internal

Overview

java.util.concurrent is a collection of utility classes to use for concurrent programming.

Subjects

General Concepts

Future

https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html


Future instances are used by executors to notify the caller of submitted task's completion.

Callable