Repository: deltaspike Updated Branches: refs/heads/master 60ba37c9f -> 81cc717e1
DELTASPIKE-1110 Added some preliminary docs for async. Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/81cc717e Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/81cc717e Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/81cc717e Branch: refs/heads/master Commit: 81cc717e13a3cc72822e19426585f17fc1d0d400 Parents: 60ba37c Author: John D. Ament <[email protected]> Authored: Wed Apr 6 21:15:34 2016 -0400 Committer: John D. Ament <[email protected]> Committed: Wed Apr 6 21:15:34 2016 -0400 ---------------------------------------------------------------------- documentation/src/main/asciidoc/core.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/81cc717e/documentation/src/main/asciidoc/core.adoc ---------------------------------------------------------------------- diff --git a/documentation/src/main/asciidoc/core.adoc b/documentation/src/main/asciidoc/core.adoc index 3c36921..346c43c 100644 --- a/documentation/src/main/asciidoc/core.adoc +++ b/documentation/src/main/asciidoc/core.adoc @@ -1174,7 +1174,7 @@ deactivate.org.apache.deltaspike.security.impl.extension.SecurityExtension=true DeltaSpike provides support for executing code in an asynchronous manner. The behavior is implemented as three different interceptors for your beans. -- `@Futreable` - Designed for bean methods that return `Future`s of some form. The method call will automatically be submitted to an `ExecutorService` +- `@Futreable` - Designed for bean methods that return `Future's` of some form. The method call will automatically be submitted to an `ExecutorService` - `@Locked` - Ability to prevent concurrent access to a method based on its usage of reads/writes. - `@Throttled` - Ability to limit how frequently a method can be invoked.
