• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

A query with respect to creation of the shared Objects.

 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I am having a query with respect to creation of the shared Objects.

I have seen a example where the Author is creatining Shared Object as shown
below :


and there is nothing related to the word "myTasks" anywhere in the Application .

Can anybody please let me know what is this word "myTasks" mean here ??

Please share your views on this .
Thanks in advance .

 
Ranch Hand
Posts: 124
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
just a guess, the word "myTasks" is served as a key to retrieve the shared object, and the object have multi-locals support. So if the user's locale is Chinese,then the code will return a Chinese version of the shared Object, if it's Japanese, then Japanese version of Shared Object will be returned. how to implement this sharedObject, in flex world it's mostly to be a singleton. cairngorm uses singleton a lot you can check that out.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic