Tagged Questions

0
votes
2answers
40 views

create singleton class that has constructor which accepts arguments that are evaluated runtime

I want to have singleton class that its object is not statically created. having the following code, when I call ChromosomePool::createPool() I get the following error message : - …
0
votes
1answer
97 views

Where are methods defined at the ruby top level?

EDIT: this post only applies to Ruby 1.9 Hi, At the toplevel method definition should result in private methods on Object, and tests seem to bear this out: def hello; "hello wor …
0
votes
5answers
114 views

java singleton pattern, should all variables be class variables?

If a class implements a singleton pattern, should all the variables be declared static? Is there any reason they shouldn't be declared static? Does it make a difference?
1
vote
7answers
84 views

C++ singleton design: using inheritance to call only some implemented methods

I have a singleton that is the main engine container for my game. I have several abstract classes that make the developer implement the different calls to what that specific object …
0
votes
1answer
17 views

ASP.NET Webforms IHttpModule Singleton

I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website. The mappings …
2
votes
3answers
59 views

Should WCF service typically be singleton or not?

I believe Jimmy Nillson said he generally made his webservices singletons. Is this the preferred method, and with WCF? Other than making the service methods static, is there someth …
0
votes
1answer
30 views

php singleton per object with distinct identifier

This is something I was thinking about the other day. I want to have a singleton-like object. Instead of a single instance of a class, I want to have a single object with a match …
1
vote
2answers
53 views

How do I make 15 static PHP classes work together well?

I have a personal PHP application that has about 15 classes. Each class is only initiated once as a page is executed. In other words, when the page loads: 15 classes are loaded, …
6
votes
6answers
314 views

Help me remove a Singleton: looking for an alternative

Background: I have some classes implementing a subject/observer design pattern that I've made thread-safe. A subject will notify it's observers by a simple method call observer-&gt …
2
votes
3answers
100 views

lazy initialization of singletons

While reading Jon Skeet's article on singletons in C# ( http://www.yoda.arachsys.com/csharp/singleton.html ) I started wondering why we need lazy initialization in a first place. I …
2
votes
3answers
64 views

Singletons or non-singletons wrapped by a Singleton

Hi Guys. I have a singleton class called SingletonController1. This SingletonController1 instantiates a bunch of others Singleton classes. SingletonController1{ Authenticator - …
0
votes
5answers
117 views

C# - same control on two forms ?

Hi, I have extended a PictureBox and created a singleton. Is it possible to display the same instance of a PictureBox control on two distinct form same time ? Thanks in advance. …
3
votes
4answers
258 views

Simple C++ logger by using singleton pattern

Due to the flooding examples of implementing logger using Singleton pattern, I just written a simple C++ logger in the same approach for my program. However, since the famous doubl …
0
votes
5answers
93 views

Java: unable to access static singleton method

hi. i am facing one problem.i have a class named "ReportingService" and it should be singleton and is is extending "CommonService". package MyApp.Services.ReportingService; publi …
1
vote
2answers
59 views

What are SingletonMethods and InstanceMethods in Ruby

I see a lot of stuff include ActiveRecord::XXXX::InstanceMethods extend ActiveRecord::XXXX::SingletonMethods I am unaware of the property or there working, just wanted a easy t …

1 2 3 4 5 21 next
15 30 50 per page