Author: hlship
Date: Wed Jul 13 00:02:34 2011
New Revision: 1145823
URL: http://svn.apache.org/viewvc?rev=1145823&view=rev
Log:
TAP5-1572: Improve documentation of Invokable
Modified:
tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/Invokable.java
Modified:
tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/Invokable.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/Invokable.java?rev=1145823&r1=1145822&r2=1145823&view=diff
==============================================================================
---
tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/Invokable.java
(original)
+++
tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/Invokable.java
Wed Jul 13 00:02:34 2011
@@ -1,4 +1,4 @@
-// Copyright 2006, 2009 The Apache Software Foundation
+// Copyright 2006, 2009, 2011 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -16,11 +16,12 @@ package org.apache.tapestry5.ioc;
/**
- * Similiar to {@link Runnable} execpt that it returns a value. Used to
represent any operation which can return a
- * value.
+ * Similiar to {@link Runnable} execept that it returns a value. Used to
represent any operation which can return a
+ * value. This is often used in situations where the code is to be executed in
another threads.
*
* @param <T> the return value type
* @see org.apache.tapestry5.ioc.OperationTracker#invoke(String, Invokable)
+ * @see org.apache.tapestry5.ioc.services.ParallelExecutor#invoke(Invokable)
*/
public interface Invokable<T>
{