Tagged Questions
The monostate tag has no wiki summary.
6
votes
1answer
65 views
Singleton vs. Monostate Pattern in Ruby
Suppose a class needs to load an external library which takes some time to load and thus should be loaded only once. Two natural solutions to this would be to use the singleton pattern or the ...
5
votes
5answers
2k views
static class and singleton
Isn't a class with all static members/methods a kind of singleton design pattern? Is there any disadvantage in particular of having such classes? A detailed explanation would help.
1
vote
2answers
286 views
Python Deprecation Warnings with Monostate __new__ — Can someone explain why?
I have a basic Monostate with Python 2.6.
class Borg(object):
__shared_state = {}
def __new__(cls, *args, **kwargs):
self = object.__new__(cls, *args, **kwargs)
self.__dict__ ...
0
votes
1answer
164 views
Is this a proper MonoState Design?
I have a Person Class and based on some help I recieved in this post.
http://stackoverflow.com/questions/825617/passing-objects-and-the-singleton-pattern/825820
I have a CurrentPerson class ...