Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
314 views

.NET - limiting the number of instances of an execution unit

Let's say I have an application written in C# called EquipCtrl.exe which runs as a local process on a PC to control a piece of equipment. Obviously, I would wish to have only one instance of ...
1
vote
1answer
54 views

WeakMultiton: ensuring there's only one object for a specific database row

In my application I need to ensure that for an entity representing a data row in a database I have at most one java object representing it. Ensuring that they are equals() is not enough, since I ...
1
vote
3answers
394 views

Elegant and 'correct' multiton implementation in Objective C?

Would you call this implementation of a multiton in objective-c 'elegant'? I have programmatically 'disallowed' use of alloc and allocWithZone: because the decision to allocate or not allocate memory ...
1
vote
2answers
204 views

How to create a class that doesn't re-create an object with identical input parameters

I am trying to create a class that doesn't re-create an object with the same input parameters. When I try to instantiate a class with the same parameters that were used to create an already-existing ...
0
votes
3answers
249 views

Enum Multiton Pattern

Is a good idea to use enum's for Multiton pattern if the number of instances for Multiton is fixed at compile-time.I have seen the Enum Sigleton pattern,so i was just wondering if the similar can be ...
0
votes
2answers
90 views

c# - Implementing plugin Instance property for internal scoped code

i've created my own plugin architecture for one of my programs. Basicly Plugin is the base class for all of my plugins and say that i've plugins like PluginA : Plugin, PluginB : Plugin. public class ...
0
votes
1answer
154 views

Multiple instances of views in PureMVC: Am I doing this right?

What I'm doing NOW: Often multiple instances of the view component would be used in multiple places in an application. Each time I do this, I register the same mediator with a different name. When ...
0
votes
2answers
665 views

C++ templated class implementation of the multiton pattern

I implemented the multiton pattern using a templated class in C++. #ifndef MULTITON_H #define MULTITON_H #include <map> template <typename Key, typename T> class Multiton { public: ...