vote up 0 vote down star

I have a doubt,.... How would you create a Singleton class in Flex...

Is there any convention like the class name should eb Singleton or it should extend any other class.

How many Singleton class can a project have?

Can anyone say the real time usage of a Singleton class?

I am planning to keep my components label texts in a Singleton class... Is it a good approach.

flag

43% accept rate

2 Answers

vote up 1 vote down check

Can of worms asking about singletons!

There are a few different options about creating singletons mainly due to AS3 not having private constructors. Here's the pattern we use.

package com.foo.bar {

    public class Blah {

        private static var instance : Blah;

        public function Blah( enforcer : SingletonEnforcer ) {}

        public static function getInstance() : Blah {
            if (!instance) {
                instance = new Blah( new SingletonEnforcer() );
            }
            return instance;
        }

        ...
    }
}
class SingletonEnforcer{}

Note that the SingletonEnforcer class is internal so can only be used by the Blah class (effectively). No-one can directly instantiate the class, they have to go through the getInstance() function.

link|flag
vote up 0 vote down

First you can reference a previous question to find out how to create a singleton class. You can find more info from a Yakov Fain presentation as well.

Second question, your project can technology have as may singleton class as you see fit but it will only create 1 instance of each. For example, in the cairngorm architecture you have 3 main singletons: controller, service and model. The number of actual class can very depending on your project.

Finally, A real world solutions would be. You have 2 components that need to talk to each other but you don't want them to know the other exists. Meaning sometimes the components are there and sometimes they are not...so you need them to be loosely coupled. you can uses singletons to pass the data from one component to the other with out "talking" to them directly.

Using singletons is a good approach if you need to pass data around your application from component to component and would like to decouple them from each other.

link|flag
Can i call something like this.. <mx:Script> <![CDATA[ import com.invoicetracking.includes.MyValues; ]]> </mx:Script> <mx:Label x="2" y="2" color="#000000" fontWeight="bold" text="{MyValues.getInstance().addUser}"/> – theband Aug 21 at 15:12
Where MyValues is a Singleton class and addUser is a variable. – theband Aug 21 at 15:13
sure can. just make sure you add the [Bindable] metatag – Shua Aug 21 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.