[Design of JCA on JBoss] - Re: Quartz, timer unification, message inflow RAR
by tom.baeyens@jboss.com
am i correct in summarizing that the conclusion is we were going to start on our own internal timer SPI ?
i found a reference to http://jira.jboss.com/jira/browse/JBAS-3207 in this topic. the fisheye tab seems to contain references to the initial work by Weston, but yet i don't find this jbosscx directory in HEAD of cvs. am i looking in the right place ?
jbosscx/src/main/org/jboss/resource/spi/timer/CancelTimerListener.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/StopTimerListener.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/Timer.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerData.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerDate.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerDateFormat.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerExcecutionContext.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerException.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerListener.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerManager.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerPeriod.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerProperty.java 1.1 added
jbosscx/src/main/org/jboss/resource/spi/timer/TimerPropertyKey.java 1.1 added
jbosscx/src/main/org/jboss/resource/timer/QuartzSchedulerLoaderAdapter.java 1.1 added
jbosscx/src/main/org/jboss/resource/timer/SchedulerLoaderAdapter.java 1.1 added
jbosscx/src/main/org/jboss/resource/timer/TimerManagerMBean.java 1.1 added
jbosscx/src/main/org/jboss/resource/timer/TimerManagerService.java 1.1 added
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968679#3968679
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968679
18 years, 4 months
[Design of JCA on JBoss] - Re: UOW port to JCA adapter for JBAS-3183
by adrian@jboss.org
Are you talking about the JMS inflow?
I thought you were talking about the old server session pool.
Making a resource adapter depend upon a jndi lookup is not very good.
If you want to do something non-portable, I'd rather you allowed
the JBoss BootstrapContext (RARDeployment) let you do a
getTransactionManager().
e.g.
| -RARDeployment implements BootstrapContext
| +RARDeployment implements JBossBootstrapContext
|
| public interface JBossBootstrapContext extends BootstrapContext
| {
| TransactionManager getTransactionManager();
| }
|
| |
| |
| | | TransactionManager tm = ((JBossBootstrapContext) bootstrapContext).getTransactionManager();
| | |
| |
| | In fact, as it currently stands, you can do getXATerminator()
| | and cast it to a TransactionManager, but that is a different story. :-)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968659#3968659
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968659
18 years, 4 months