06-14-2016 09:23 AM
How to Create Folllowing Desing Pattern using Labview OOP og JKI SMO or Actor Framework
Solved! Go to Solution.
06-14-2016 08:22 PM
06-14-2016 10:28 PM
06-15-2016
12:38 AM
- last edited on
03-25-2025
05:19 PM
by
Content Cleaner
yes we can do this using producer consumer architechture....
check this link https://www.ni.com/en/support/documentation/supplemental/21/producer-consumer-architecture-in-labvie.....
There are two ways to tell s thanks in forums : either give Kudos or Marked Solutions
06-15-2016 03:00 AM
06-15-2016 03:28 AM
Flying Spaghetti Monster?
/Y
06-15-2016 03:28 AM - edited 06-15-2016 03:34 AM
The Actor Framework might not be the right choice for you, but I don't think you should rule it out completely. I think it can be a very good architecture choice for many applications. I'm not sure if you're familiar with how it works, but the basic idea is that each "actor" you create is an object which inherits from the Actor object provided in the framework. Actors are asyncronously running processes, and the framework already has built in ways to launch actors and send messages from one actor to another. Really all you do when you create an actor is write the code that it should run in response to specific messages, which can involve sending more messages to other actors or itself.
I often make state machine actors by putting a state enum in the actor's private data and then having that actor send itself a message periodically and whenever it receives that message it checks its state and potentially sends other messages/does things it needs to.
I think what would point you towards using the Actor Framework would be if any of those slave state machines 1, 2, ... n will be the same as each other, because one of the biggest benefits of the Actor Framework is that you can launch multiple instances of a single actor you've written.
--Hope
06-15-2016 04:20 AM
Hello saran1988,
On the starting window of LabVIEW,you can click on create project.
You will find the template of design pattern you're talking about. Below there is a quick description.
And if you're click on More information, you'll find the use case.
I think that all the info you need are in it.
Regards.
06-15-2016 05:32 AM
Hi all,
Thanks for the Very Good Reply .
this kind of Application Deisgn . can be Done using C# so Easily ..
But .
Can Anybody give some example ?
06-15-2016
05:56 AM
- last edited on
03-25-2025
05:19 PM
by
Content Cleaner
How about GOOP .
https://www.ni.com/en/support/downloads/tools-network/download.goop-development-suite.html
is it possible to do these kind of application ?