2
votes
5answers
290 views
state_machine only works for new records
I can't seem to get the state_machine gem (http://github.com/pluginaweek/state_machine/) to work on existing records (it works correctly on new records).
Here's my model:
class C …
4
votes
8answers
1k views
Non-deterministic finite state machines in software development?
Recently I've been thinking about finite state machines and how I would implement them in software (programming language doesn't matter).
My understanding is that deterministic st …
1
vote
1answer
265 views
Generic Architecture for a Network Server/Client using a State Machine
HI, All,
so, I inventedmade up a simple protocol that I want to use for a client to talk to a server. It's the typical (I think) three-phase layout:
Connection Establishment (w …
1
vote
2answers
307 views
Multiple ModificationForms in Sharepoint Workflow
Hello everybody,
i am working on a Sharepoint Server 2007 Statemachine Workflow. Until now i have a few states and an custom Association/InitiationForm which i created with InfoPa …
1
vote
6answers
154 views
big vs. nested statemachines
I have a statemachine in a real-time system with very few (3) states.
typedef enum {
STATE1,
STATE2,
STATE3
} state_t;
However, the transitions between those states …
3
votes
3answers
85 views
Are Windows Workflow Foundation Statemachines suitable for high performance scenarios?
hi there,
i´m currently dealing with a system where i have to track the state for several thousand objects in parallel that send possible state updates a few times every minute. I …
4
votes
3answers
313 views
implementing a state machine using the “yield” keyword
Is it feasible to use the yield keyword to implement a simple state machine as shown here. To me it looks like the C# compiler has done the hard work for you as it internally imple …
2
votes
4answers
452 views
State Machine Implementations
I am trying to build a board game ... And looks like it has to be implemented using a state machine..
I know of the State pattern from GoF, but I am sure there must be other ways …
2
votes
3answers
721 views
How to call Events in Interfaces C#?
So i have a design problem. I have a mouse class that has delegates and events. ie MouseButtonPressed, MouseMoved. and such that are getting called by a state engine.
What i want …
0
votes
4answers
139 views
Has anyone used “state machine” like schema in your project?
Define everything to do when something happens,
I really appreciate that,
but never have tried that yet.
my Q is :
How to design a state machine based system?
7
votes
7answers
623 views
Truth tables in code? How to structure state machine?
I have a (somewhat) large truth table / state machine that I need to implement in my code (embedded C). I anticipate the behavior specification of this state machine to change in t …
2
votes
1answer
319 views
Any recommendation for rails workflow implementations?
Anybody have experience with Rails workflow plugins? Route/OpenWFEru.
I am looking for CMS type workflow with states like edit, submit, approve, rollback, based on roles. Is thi …
1
vote
2answers
175 views
Cannot compile FSM sample code
There is a nice state machine tutorial called UML Tutorial: Finite State Machines by Robert C. Martin. But I can't compile the sample code it provides. I got *FsmTest.cpp(46) : err …
7
votes
18answers
1k views
uses for state machines
In what areas of programming would I use state machines ? Why ? How could I implement one ?
EDIT: please provide a practical example , if it's not too much to ask .
0
votes
2answers
334 views
Are there any tools to help the user to design a State Machine to be consumed by my application?
When reading this question I remembered there was something I have been researching for a while now and I though Stackoverflow could be of help.
I have created a framework that ha …
