站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.2.0 API 英文版文档

Asynchronous (JBoss Seam API Documentation) - JBoss Seam 1.2.0 API 英文版文档


org.jboss.seam.annotations
Annotation Type Asynchronous


@Target(value=METHOD)
@Retention(value=RUNTIME)
@Documented
public @interface Asynchronous

Marks a method as an asynchronous method, to be dispatched by the EJB3 TimerService. If the method returns Timer, the return value will be the Timer used for dispatching the method call. Otherwise, the method should return void. Note that asynchronous calls are processed in a different EVENT, SESSION and CONVERSATION context to the caller, so the actual recieving object may be a different instance of the component to the object that was called.

Author:
Gavin King
See Also:
Expiration, Duration, IntervalDuration