The singleton is a design pattern to ensure that exactly one application-wide instance of a particular class exists.
0
votes
1answer
31 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
39 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
14 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
16 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
83 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
93 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
14 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
35 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
20 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
58 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
23 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
72 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
25 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
73 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
68 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
50 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
35 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
90 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
72 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
47 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
96 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
26 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
30 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
41 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
58 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
53 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
98 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
56 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
28 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
37 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
23 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
38 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
38 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
16 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
39 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
48 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
28 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
vote
2answers
24 views
Use Ninject.InSingletonScope() for all classes in defined namespace
I have a set of repositories in a class lib that are required to be singletons.
They share library with other classes as well - classes created as singletons.
Is it possible to configure Ninject to ...
-2
votes
0answers
31 views
Creating a singleton by extending an existing class?
I'm wondering whether it is a bad idea to create a singleton not by modifying an existing class, but by extending an existing class and just putting the singleton front in the new singleton class. I ...
0
votes
1answer
42 views
Android service isn't working as a singleton
I have a service that is being used/bound in multiple activities (I carefully wrote it so that one activity will unbind it before another binds, in onPause/onResume). However, I noticed a member in ...
-1
votes
1answer
35 views
Groovy @singleton is not working properly
Below is the code that I am trying execute as singleton
MyResourceBundleSingleton.groovy // groovy class
@Singleton
class MyResourceBundleSingleton {
public ResourceBundle getResourceBundle () ...
1
vote
1answer
87 views
Define a Zend Model as Singleton
I want to put my Zend Model as Singleton, so I have done this:
class Social_Model_DbTable_Dossier extends Zend_Db_Table_Abstract {
private static $_instance;
public static function GetInstance() {
...
1
vote
0answers
33 views
Handling private write methods on singleton EJBs
I have a singleton EJB whose business methods are all @Lock(READ). However, on special ocassions, some of them call a private method that persists stuff on a database. What's the best way to handle ...
0
votes
1answer
48 views
Disposing entity framework dbcontext in singleton class (StructureMap)
In my application i am using StructureMap with EntityFramework.
Well, my ioc config looks like :
x.For<IDbContext>().Use(c => new DbContext(AppSettings.ConnectionString));
...




