Return-Path: X-Original-To: apmail-deltaspike-commits-archive@www.apache.org Delivered-To: apmail-deltaspike-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3524018794 for ; Thu, 7 Apr 2016 01:13:47 +0000 (UTC) Received: (qmail 18099 invoked by uid 500); 7 Apr 2016 01:13:47 -0000 Delivered-To: apmail-deltaspike-commits-archive@deltaspike.apache.org Received: (qmail 18058 invoked by uid 500); 7 Apr 2016 01:13:47 -0000 Mailing-List: contact commits-help@deltaspike.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltaspike.apache.org Delivered-To: mailing list commits@deltaspike.apache.org Received: (qmail 18049 invoked by uid 99); 7 Apr 2016 01:13:47 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2016 01:13:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id B60CAC064A for ; Thu, 7 Apr 2016 01:13:46 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.999 X-Spam-Level: X-Spam-Status: No, score=0.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id NWh5BZ0gwnHJ for ; Thu, 7 Apr 2016 01:13:46 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id A9CF55F1B3 for ; Thu, 7 Apr 2016 01:13:45 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id CF63BE0113 for ; Thu, 7 Apr 2016 01:13:44 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 8012D3A027B for ; Thu, 7 Apr 2016 01:13:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1738064 - /deltaspike/site/trunk/content/documentation/core.html Date: Thu, 07 Apr 2016 01:13:44 -0000 To: commits@deltaspike.apache.org From: johndament@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160407011344.8012D3A027B@svn01-us-west.apache.org> Author: johndament Date: Thu Apr 7 01:13:44 2016 New Revision: 1738064 URL: http://svn.apache.org/viewvc?rev=1738064&view=rev Log: Site checkin for project Apache DeltaSpike Documentation Modified: deltaspike/site/trunk/content/documentation/core.html Modified: deltaspike/site/trunk/content/documentation/core.html URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/core.html?rev=1738064&r1=1738063&r2=1738064&view=diff ============================================================================== --- deltaspike/site/trunk/content/documentation/core.html (original) +++ deltaspike/site/trunk/content/documentation/core.html Thu Apr 7 01:13:44 2016 @@ -1756,6 +1756,27 @@ The following example shows how it would
+

Asynchronous Operations

+
+
+

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

    +
  • +
  • +

    @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.

    +
  • +
+
+
+
+

Utilities

@@ -2012,6 +2033,7 @@ objects, the last object in the array wi
  • Deactivate Deactivatable-Classes via Config
  • +
  • Asynchronous Operations
  • Utilities