So just to clear some things up with Coldspring working with Reactor:

1. Should all Reactor objects be defined in CS and ONLY called through CS in
your apps?

2. The createRecord object in Reactor is dependent on reactor's createDAO
object - but I think this dependency is handled by Reactor... does this mean
we don't define that dependency in CS?

3. If I had a reactor bean defined in CS like this:

<bean id="Website" factory-bean="reactorFactory"
factory-method="createRecord">
<constructor-arg name="name"><value>Website</value></constructor-arg>
</bean>

Can I use that bean as a dependency for another object, just like I would
any other bean?

4. Before using Reactor, I had a Customer bean with a getCountOrders()
method that used a dependent OrderGateway cfc to return the count. To mimic
this using CS & Reactor, should I build a new object called CustomerService
that handles this dependency since you can't build dependencies into Reactor
objects? (or can u?)

Thanks folks!

Baz






Reply via email to