The singleton is a design pattern to ensure that exactly one application-wide instance of a particular class exists.

learn more… | top users | synonyms (1)

0
votes
1answer
338 views

iOS singleton shared instance and loading remote json data

This is my situation: // data.m @property (nonatomic, strong) NSMutableArray *jsonData; + (Data *)sharedData { static Data *sharedData; static dispatch_once_t onceToken; ...
0
votes
2answers
56 views

Object reference not set to an instance of an object On singleton class

I have a class named DAL with the methods to connect to my database. When I create a new project, I always go on Add Existing Item and Add this class. Always worked ! But now that I imported to my new ...
2
votes
4answers
54 views

mutating object as singleton?

I am not sure, if anyone has asked this question before (If so apologies). code copied from wikipedia. public class Singleton { private static final Singleton instance = new Singleton(); ...
0
votes
0answers
4 views

Why double check is required in Double Check Locking Singleton class

Recently I attended one interview where I was asked this. I understood the need of synchronization, volatile keyword etc. But why double checking one before synchronize block and one after ...
1
vote
1answer
21 views

Bind to static generic instance of a class

I use this code in my views' (which are UserControl) constructors: this.DataContext = The<Chart1ViewModel>.Instance; Where the The<> is a generic static per-type singleton storage which ...
1
vote
1answer
116 views

C++ on singleton

I've a singleton class and I'm sure that the first call of the singleton is done by only one thread. I've implemented singleton with lazy initialization. class MySingleton : private ...
2
votes
2answers
75 views

WCF + Singleton + File transfer + Multithreading

I have a file transfer service written using WCF. It recieves a file sent by the client. The client inturn sends across the file using FileStream + MessageContract. I have made the WCF file transfer ...
0
votes
1answer
33 views

Singleton with context in Android

I want to create a Singleton class that will be callable from all points in my application. The problem is this class will need a context for its operations. I don't want to have to recreate the ...
1
vote
2answers
87 views

Non-Singleton Services in Angular

Angular clearly states in its documentation that Services are Singletons: Angular services are singletons Counterintuitively, module.factory also returns a Singleton instance. Given that there are ...
0
votes
0answers
16 views

PHP Singleton Database WHERE Query doesn't work

Hi I wan't to use a select where query by using the singleton database class. But It only returns all the records of my table bugs. I wan't to select only the bug records from a specific user ...
1
vote
0answers
22 views

How to use singleton class with Win32::OLE in Perl?

I have a dll with a singleton class xxx_xxxx. How do I call it from Win32::OLE from Perl? I tried Win32::OLE-> new("xxx_xxxx") and it just crashed. But Win32:::OLE->GetActiveObject is OK. It is a ...
0
votes
3answers
100 views

Objective C Singleton Class [duplicate]

I have created a singleton class in Objective C. Like the one below: @interface SingletonClass : NSObject{ NSMutableArray *instanceArray; } @property(nonatomic,retain)NSMutableArray ...
2
votes
1answer
96 views

Aquire Singleton class Instance Multithread

To get the instance of the class with Singleton pattern, I want use the following function: This is a sketch interface uses SyncObjs; type TMCriticalSection = class(TCriticalSection) private ...
0
votes
2answers
15 views

Spring Beans Scope - taking into account Controllers \ Services \ Repositories

I'm having 1 @Controller bean in my project and 2 @Service beans that this controller calls. the services using 2 different @Repository beans for persisting. My question is : my server is about to ...
0
votes
1answer
50 views

Core Data context and singleton data controller

I have a singleton data controller to hold an array of objects. See for example bananas question for my solution: singelton dataController banansArray Now I want to save the array of bananas to ...
0
votes
1answer
27 views

Can all my classes be singletons?

I'm implementing a project where I'm testing my UI. So, each part of my UI is a separate class(Seleniums page object pattern). Now, since it's just a single web page I'm testing, according to me, ...
2
votes
3answers
64 views

What is the use of init in this singleton class..?

@Interface // // Created by macbook on 31.05.12. // // To change the template use AppCode | Preferences | File Templates. // #import <Foundation/Foundation.h> @interface CESettings : ...
1
vote
2answers
24 views

Multiple users access singleton

I'm using a SQLconnector singleton class with a lock object. My question now is that if multiple users use this class the same time, will this give issues? FYI... Singleton code public sealed class ...
0
votes
4answers
42 views

Why a static singleton is a simple and elegant solution to avoid 'DCL'?

When need a singleton, is a static field a elegant solution? class HelperSingleton { static Helper singleton = new Helper(); public static Helper getInstance() { return singleton; } ...
0
votes
2answers
79 views

Singleton functions IOS

A perhaps basic question regarding a singleton class which I want to have as a "dataController" I have based most of the singleton implementation on the banans thread: Using a singleton to create an ...
0
votes
2answers
32 views

Memory leak on calling API using sharedInstance resulting in crashin IOS

I created a sharedInstance with the code below: + (MyClass *)sharedStore { @synchronized(self) { if (sharedInstance == nil) sharedInstance = [[self ...
1
vote
4answers
75 views

Dynamic-length array using Singleton

Okay, I am way outside my comfort zone here and am struggling with new concepts but I hope I can make myself clear. As I understand it, global variables are very bad in C# (and are dangerous in ...
1
vote
0answers
69 views

How to use singleton and pure virtual function together?

class base{ static base* m_selfInstance; public: static base* GetInstance(); virtual void abc() = 0; }; class der:public base{ public: void abc(){cout ...
0
votes
0answers
39 views

How to get rid of singletons in PHP

I recently found out that singletons are bad. I couldn't find answer how to recreate my current code to be without singleton. What i have now: class checker { private static $inst; public ...
-1
votes
1answer
63 views

Singleton on multiple JVMs using JNDI [closed]

It is said that Singleton is always on per JVM basis, but somebody asked me to create a singleton instance throughout multiple JVMs. I have found a solution to create an object on one JVM, register it ...
-1
votes
0answers
40 views

Getting “TypeError - singleton can't be dumped” when trying to Marshal.Dump a Class without singletons

I've run into a problem when trying to Marshal one of my Ruby classes. Marshal.dump raises a "TypeError - singleton can't be dumped" exception although as far as I can tell, nothing in the class has ...
1
vote
3answers
91 views

Should I use a singleton for hardware management ?

So I'm rather new at OO Design, and I'm wondering about the use of the Singleton design pattern. I've read some articles about why singletons are bad but still can't figure out if I could need one or ...
0
votes
2answers
75 views

Singleton in Android

I have followed this link and successfully made singleton class in Android. http://www.devahead.com/blog/2011/06/extending-the-android-application-class-and-dealing-with-singleton/ Problem is that i ...
0
votes
1answer
48 views

Singleton Class design Issues [duplicate]

Below is a class using the singleton design pattern: class Singleton { private static Singleton instance; private Singleton() { ... } public static synchronized Singleton ...
1
vote
5answers
102 views

Clear Singleton instance in Java

I have a Singleton class to save the state of an application's module. This class simply have a lot of class variables with setters and getters : public class ModuleState{ private static ModuleState ...
0
votes
2answers
33 views

Thread safe singleton and inner class solution

This is how I always created a thread-safe singleton, in order to use it in a multi-threading app. public class Logger { private Logger() {} private static Logger instance = new Logger(); ...
-2
votes
1answer
32 views

Check if an object has a singleton class [closed]

I am writing a module with method foo, which calls a class method bar on the receiver's class. My current approach is to use self.class.bar, which works fine unless the class method is defined in an ...
0
votes
2answers
43 views

getInstance before initWithNibName:

I have a class named IGMapViewController In that I have static IGMapViewController *instance =nil; +(IGMapViewController *)getInstance { @synchronized(self) { if (instance==nil) { ...
0
votes
2answers
60 views

C# singleton between projects didn't work

I have 3 projects in a solution like This: Xna Game Project (GAME) with reference to Library Library Project (Library) Windows Form Project (WIN) with reference to Library This project have a ...
0
votes
2answers
57 views

Singleton in C++

I'm learning about Singleton design pattern. I have the following code example: //singleton.hpp #ifndef SINGLETON_HPP #define SINGLETON_HPP class Singleton { public: static Singleton& ...
1
vote
5answers
99 views

Singleton Implementation example

I am trying to find my own way of Java Singleton implementation. The code is as follows: public class Singleton{ private volatile static Singleton _instance = null; private Singleton(){} ...
1
vote
1answer
60 views

Concise, fast singleton subclasses

I'm writing, in C#, an interpreter for a dynamic language, and implementing primitive functions as an abstract class Primitive with a virtual Apply method, where each actual primitive function will be ...
0
votes
2answers
34 views

multiple singleton beans referencing the same class

I have a java class lets say 'class1' which basically holds a ConcurrentHashMap (to be used as a cache) and some functions to update and remove the entries in the map.This class is not designed to be ...
0
votes
2answers
24 views

Singleton Action versus Multi instance Action

I have a dude about how to implement Actions in Swing. My idea is create a Class for each action of my application extending AbstractAction so I can use in many components that must have the same ...
0
votes
2answers
41 views

Objective C- Import error with singleton [duplicate]

I am quite new on Objective C so please be a bit slow with me. I have constructed my Views like this: ViewController=>Root(View)=>Controls(View). Root is a Singleton so I can get the root element of ...
0
votes
1answer
24 views

PHP issues with namespaces and singletons

Hey guys I'm having an issue that I think is because due to namespaces, I have my parent class TheParent where I do some stuff, add it to $this then extend to a child class expecting that $this will ...
2
votes
4answers
85 views

Why/How does the mechanism that cleans up statics, gain access rights that allow it to call private members?

I tested a pattern for declaring a singleton class in C++ that makes the default destructor 'private', but the pattern makes no use of this destructor through any member call. I tested this code on ...
0
votes
1answer
55 views

Instantiating Singleton class with CLLocationManager in AppDelegate didFinishLaunchingWithOptions

i am using a singleton class to track a users location. if i instantiate the class from within my running app and start tracking everything is peachy. however, if the app is closed (in the app ...
0
votes
1answer
42 views

Why do I get an “Unresolved Externals” when calling a static attribute? Visual C++

although there are a lot of answers to this topic, I still have a problem. I want, like everybody, to implement a Singleton pattern. I tried with this: class Factory { private: Factory(void); ...
0
votes
1answer
18 views

Async WMI query for Win32_LocalTime does not fire events

I am usually do most of my wmi queries asnyc and normally, I have no problem with them. I setup a ManangementScope with all privileges and the necessary dcom security [for remote queries]. A little ...
0
votes
1answer
40 views

Changing and sending globally needed data

I would like to ask about best-practice how to hold and change a global state of application. I have a Parser (which now is a singleton) which among others have properties like private String mode ...
0
votes
1answer
55 views

MongoDB JavaEE Singleton Extra Instances

So, i've been having this small issue while attempting to use MongoDB (And java driver), using Servlets EJBs and EJB Timers, running on Jboss 4.2.3. I create a mongo singleton like so private static ...
0
votes
0answers
82 views

singleton nasty object, unable to use other objects

I'm trying to use singleton design pattern to create an object and consume it. First I have the system class [the factory] object system class class system { public function ...
0
votes
2answers
31 views

slf4j logger singleton issue

I want to do logging using slf4j. I write my own logger class public class GlobalLogger { private static final Logger logger = LoggerFactory.getLogger(GlobalLogger.class); public static void ...
0
votes
0answers
28 views

singleton autofac property is null after binding

i have question regarding autofac. i am having a bootstrap class where i am registering my viewmodel as singleton via registertyp().singleinstance(). mytype.singletong.listproperty() == populatedata; ...

1 2 3 4 5 58