Re: [Pharo-dev] Suspending a Process

2014-07-23 Thread Nicolai Hess
Hi ben, thank you for looking at this. 2014-07-22 20:17 GMT+02:00 : > I thought this might be interesting to learn, so I've gave it a go. I > had some success at the end, but I'll give a progressive report. > > First I thought I'd try moving the update of StringMorph outside the > worker-proces

Re: [Pharo-dev] Suspending a Process

2014-07-22 Thread Ben Coman
b...@openinworld.com wrote: I thought this might be interesting to learn, so I've gave it a go.  I  had some success at the end, but I'll give a progressive report. First I thought I'd try moving the update of StringMorph outside the worker-process using a Morph's #step method as foll

Re: [Pharo-dev] Suspending a Process

2014-07-22 Thread btc
I thought this might be interesting to learn, so I've gave it a go.  I  had some success at the end, but I'll give a progressive report. First I thought I'd try moving the update of StringMorph outside the worker-process using a Morph's #step method as follows... Morph subclass: #BackgroundWo

Re: [Pharo-dev] Suspending a Process

2014-07-21 Thread Nicolai Hess
I am still struggling with it. Any ideas? 2014-07-09 11:19 GMT+02:00 Nicolai Hess : > > > > 2014-07-09 2:07 GMT+02:00 Eliot Miranda : > > Hi Nicolai, >> >> >> On Tue, Jul 8, 2014 at 7:19 AM, Nicolai Hess wrote: >> >>> I want to create a process doing some work and call #changed on a Morph. >>>

Re: [Pharo-dev] Suspending a Process

2014-07-09 Thread Nicolai Hess
2014-07-09 2:07 GMT+02:00 Eliot Miranda : > Hi Nicolai, > > > On Tue, Jul 8, 2014 at 7:19 AM, Nicolai Hess wrote: > >> I want to create a process doing some work and call #changed on a Morph. >> I want to start/suspend/resume or stop this process. >> But sometimes, suspending the process locks th

Re: [Pharo-dev] Suspending a Process

2014-07-08 Thread Eliot Miranda
Hi Nicolai, On Tue, Jul 8, 2014 at 7:19 AM, Nicolai Hess wrote: > I want to create a process doing some work and call #changed on a Morph. > I want to start/suspend/resume or stop this process. > But sometimes, suspending the process locks the UI-Process, > and I don't know why. Did I miss some

[Pharo-dev] Suspending a Process

2014-07-08 Thread Nicolai Hess
I want to create a process doing some work and call #changed on a Morph. I want to start/suspend/resume or stop this process. But sometimes, suspending the process locks the UI-Process, and I don't know why. Did I miss something or do I have to care when to call suspend? Wrapping the "morph change