WWF + SMC

  • Thread starter Thread starter jack
  • Start date Start date
J

jack

We are in the begining of the project which has various stats for of
the entity.

Using Windows workflow foundation I can achive this functionality of
stats (though im a newbee in it)

How about the SMC(sourceforge.net) which creates a class out of the
states which could be used in the project in that state.

I just wanted to know whether is there any method thought which we can
create class out of the particular state.

And for the project which would be the best option WWF or SMC
 
SMC is a formal state machine compiler usually used with parsers, but
not limited. it build a formal state table (and performs the standard
optimization the state transitions).

WWF is a simple workflow component. It has a state machine, but its not
high performance, its interest is orchestration of messages/events
between components.

which you uses depends on the needs of your components.


-- bruce (sqlwork.com)
 
Yes thats true.
I found out that SMC is the best option for using in the project. In
SMC as performance point of view its good and even the state could be
serialized and kept in the database which is not possible in WWF
 
Back
Top