Hi Lou,

 

Yes see:

 

processStartUpList: resuming

               "Send #startUp to each class that needs to run initialization after a snapshot."

 

               self send: #startUp: toClassesNamedIn: StartUpList with: resuming.

 

If you need to send to instances then have the class side do it.

 

MyClass class >> startUp: resuming

 

               "Send startUp to all my instances

               self allInstnaces do: [:a | a startUp: resuming].

              

Or maybe,

 

               “send startUp to my default instance”

               Default ifNotNil: [Default startUp: resuming].

 

Hope that helps.

 

All the best,

 

Ron Teitelbaum

Head Of Engineering

3d Immersive Collaboration Consulting

ron@3dicc.com

Follow Me On Twitter: @RonTeitelbaum

www.3dicc.com

3d ICC on G+

 

 

 

> -----Original Message-----

> From: squeak-dev-bounces@lists.squeakfoundation.org [mailto:squeak-dev-

> bounces@lists.squeakfoundation.org] On Behalf Of Louis LaBrunda

> Sent: Thursday, February 28, 2013 6:37 PM

> To: squeak-dev@lists.squeakfoundation.org

> Subject: [squeak-dev] Running process after image save/stop/restart

>

> Hi Ron,

>

> Thanks for the help.

>

> >Then you just need to implement the #startUp method on your class to

> >handle refreshing the date.

>

> Is #startUp a class side method?  When I try to save it, I get an ominous warning

> message.

>

> Lou

> -----------------------------------------------------------

> Louis LaBrunda

> Keystone Software Corp.

> SkypeMe callto://PhotonDemon

> mailto:Lou@Keystone-Software.com http://www.Keystone-Software.com

>

>