New Post: Injecting dependencies into Tasks
Yes, I have thought about it a few times - I wasn't sure if anyone is actually using the CommonServiceLocator, so I haven't actually bothered to make the change thus far, as I hate to take a dependency...
View ArticleNew Post: Injecting dependencies into Tasks
thanks a lot. it works as expected. been busy with other stuff and couldn't try it out till today.
View ArticleNew Post: Injecting dependencies into Tasks
We do use the CommonServiceLocator. The recent release of Prism 2.0 also uses it, as well as the Caliburn beta. But yes, still asking out of curiosity.
View ArticleCreated Issue: Replace existing IoC integration w/MS Service Locater
Use service locater library for universal IoC support
View ArticleNew Post: Injecting dependencies into Tasks
Is there any example to do accomplish these tasks? Sorry, I'm lost with all the DI techniques being described here.
View ArticleNew Post: Injecting dependencies into Tasks
hi nirataro, first you need to define your implementation of IObjectBuilder. I have defined mine as below: public class WindsorObjectBuilder : IObjectBuilder { private readonly...
View ArticleNew Post: Parallel Process
I have a system that use a single column for case status. SimpleStateMachine state drives the value of this case status. So right now I have a design dillema.I have a situation where I need to start...
View ArticleNew Post: Parallel Process
That's a tough one. If you were using a sequential workflow, this would be a no brainer, you'd do a branch and join. We also have this need in our process flows, and I haven't settled on the right...
View ArticleNew Post: Timed Events
What would be the best way to have a timed based trigger. An example of what I mean is: Imaging the scenario of a Call management workflow After the call ages to being 24 hours old, its state should...
View ArticleNew Post: Timed Events
For the timer, you would need some kind of a long running process to manage the timers, so you probably will need to implement that in whatever process is hosting your workflow and have the timer...
View ArticleNew Post: This just works for me
Hi, I am using SimpleStateMachine for my project and it just works for me. I use "graphviz" to visualize the state machine and custom tasks to carry out actions. Thanks for providing this stuff for us....
View ArticleNew Post: This just works for me
I'm pleased to hear that! Is graphviz easy to use for such tasks? That's something I would like to play with myself.
View ArticleNew Post: This just works for me
Yes, it is rather easy to convert a SimpleStateMachine to Graphviz's DOT langauge. The result usually looks good enough. I use SVG output and then convert it to PNG with ImageMagick. Unfortunately the...
View ArticleNew Post: Conditional State Transitions
Any solution to this case yet? It would make things a lot easier
View ArticleNew Post: Conditional State Transitions
I've more or less moved my attention to Ruby development now. Aalthough we still use SSM in production in our .NET products, we aren't evolving it, and in fact we're in the process of porting our SSM...
View ArticleNew Post: Memory Leak/Management Issue with SSM?
Hello, First of all, thanks for making this library "free". I need to create a number of SimpleStateMachine (1000+) instances in my application and then delete those. Even though I de-reference the...
View ArticleNew Post: Memory Leak/Management Issue with SSM?
PGh0bWw+PGJvZHkgYmdjb2xvcj0iI0ZGRkZGRiI+PGRpdj5JJ20gc29ycnkgSSBkb24ndCBrbm93 IHdoeSB0aGF0IHdvdWxkIGJlLiBZb3UgbWlnaHQgc2VlIGlmIG9iamVjdHMgeW91IGFyZSB1c2lu...
View ArticleNew Post: Cannot seem to create transition actions
I am using this statemachine with code only and not using the boo dsl I want to assosiate actions with transitions like you can in the uml and not just call backs for state entry/exit. However, when I...
View ArticleNew Post: yet another simple state machine...
Cool stuff by the way, I love boo and it's dsl capabilities. I just got done with a first go at implementing the same state machine dsl in a grammar I have been working on in case you were interested:...
View Article