Source Code Cross Referenced for CompletionService.java in  » Apache-Harmony-Java-SE » java-package » java » util » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.util.concurrent 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Written by Doug Lea with assistance from members of JCP JSR-166
03:         * Expert Group and released to the public domain, as explained at
04:         * http://creativecommons.org/licenses/publicdomain
05:         */
06:
07:        package java.util.concurrent;
08:
09:        /**
10:         * A service that decouples the production of new asynchronous tasks
11:         * from the consumption of the results of completed tasks.  Producers
12:         * <tt>submit</tt> tasks for execution. Consumers <tt>take</tt>
13:         * completed tasks and process their results in the order they
14:         * complete.  A <tt>CompletionService</tt> can for example be used to
15:         * manage asynchronous IO, in which tasks that perform reads are
16:         * submitted in one part of a program or system, and then acted upon
17:         * in a different part of the program when the reads complete,
18:         * possibly in a different order than they were requested.
19:
20:         * <p>
21:         *
22:         * Typically, a <tt>CompletionService</tt> relies on a separate {@link
23:         * Executor} to actually execute the tasks, in which case the
24:         * <tt>CompletionService</tt> only manages an internal completion
25:         * queue. The {@link ExecutorCompletionService} class provides an
26:         * implementation of this approach.
27:         *
28:         */
29:        public interface CompletionService<V> {
30:            /**
31:             * Submits a value-returning task for execution and returns a Future
32:             * representing the pending results of the task. Upon completion,
33:             * this task may be taken or polled.
34:             *
35:             * @param task the task to submit
36:             * @return a Future representing pending completion of the task
37:             * @throws RejectedExecutionException if task cannot be scheduled
38:             * for execution
39:             * @throws NullPointerException if task null     
40:             */
41:            Future<V> submit(Callable<V> task);
42:
43:            /**
44:             * Submits a Runnable task for execution and returns a Future 
45:             * representing that task. Upon completion,
46:             * this task may be taken or polled.
47:             *
48:             * @param task the task to submit
49:             * @param result the result to return upon successful completion
50:             * @return a Future representing pending completion of the task,
51:             * and whose <tt>get()</tt> method will return the given result value 
52:             * upon completion
53:             * @throws RejectedExecutionException if task cannot be scheduled
54:             * for execution
55:             * @throws NullPointerException if task null     
56:             */
57:            Future<V> submit(Runnable task, V result);
58:
59:            /**
60:             * Retrieves and removes the Future representing the next
61:             * completed task, waiting if none are yet present.
62:             * @return the Future representing the next completed task
63:             * @throws InterruptedException if interrupted while waiting.
64:             */
65:            Future<V> take() throws InterruptedException;
66:
67:            /**
68:             * Retrieves and removes the Future representing the next
69:             * completed task or <tt>null</tt> if none are present.
70:             *
71:             * @return the Future representing the next completed task, or
72:             * <tt>null</tt> if none are present.
73:             */
74:            Future<V> poll();
75:
76:            /**
77:             * Retrieves and removes the Future representing the next
78:             * completed task, waiting if necessary up to the specified wait
79:             * time if none are yet present.
80:             * @param timeout how long to wait before giving up, in units of
81:             * <tt>unit</tt>
82:             * @param unit a <tt>TimeUnit</tt> determining how to interpret the
83:             * <tt>timeout</tt> parameter
84:             * @return the Future representing the next completed task or
85:             * <tt>null</tt> if the specified waiting time elapses before one
86:             * is present.
87:             * @throws InterruptedException if interrupted while waiting.
88:             */
89:            Future<V> poll(long timeout, TimeUnit unit)
90:                    throws InterruptedException;
91:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.