On Sat, 17 Aug 2002 04:18, Berin Loritsch wrote:
> ---------------- From Me (Third Version) --------------
>
> interface Input
> {
>     Transaction getNextTransaction();
> }
>
> interface Output
> {
>     Response process( Transaction trans );
> }
>
> interface Manipulator
> {
>     Transaction manipulate( Transaction trans );
> }
>
> ----------------- NOTES -------------------

+1

Essentially makes it event driven and the controller that drives this has a 
lot more control, the objects are largely reactive etc.

It is great if you want to massively scale but possibly a little harder to 
write initially (though I find even style programs easier to write so I find 
this easier ;)

-- 
Cheers,

Peter Donald
-------------------------------------------------------
To fight and conquer in all your battles is not supreme 
excellence; supreme excellence consists in breaking the 
enemy's resistance without fighting. - Sun Tzu, 300 B.C.
-------------------------------------------------------


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to