I want to implement singleton for httpconnection.... I have a servlet as a server and client side I use android. I have to use the connection many times. Currently, each time I am doing a new connection, but that is not the right way.. So I want to implement singleton for the httpconnection so I can use that instance in each android class..... so help me.. what type of code i write..
|
Show some code from what you have, and I can help you more... Off the cuff, I would say make the httpconnection object a member variable of the class, and any time you're making a new one, reference the member variable instead. |
|||||||
|
|
While binding a singleton with a live
Some might contend why initialise the instances inline and not within the |
|||
|
|