Seam opensymphony quartz implementation doesn't offer stateful job and queue jobs!
-----------------------------------------------------------------------------------
Key: JBSEAM-2898
URL:
http://jira.jboss.com/jira/browse/JBSEAM-2898
Project: Seam
Issue Type: Feature Request
Components: Async
Affects Versions: 2.0.1.GA
Environment: JBoss 4.2.1 AS
Reporter: Stateless Bean
Priority: Critical
Fix For: 2.0.2.GA
I try to implement opensymphony stateful job whitch offer misfire/queue jobs and Seam
hybrid doesn't offer that!
Is there any possible to implement that to next seam release?
for now I made this example but this isn't good idea:
@Asynchronous
@Transactional
public QuartzTriggerHandle scheduleMoves(@Expiration Date when, @IntervalDuration Long
interval,
@FinalExpiration Date stoptime, Person
person) {
try {
synchronized (EntityManager.class) {
calculatesomethink();
}
}
catch (EJBException e) {
log.error("processor -> scheduler(): " + e.getMessage());
}
return null;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira