Subscribe

2016-01-03 Thread Brett Stahlman
Hello Brett Stahlman :-) You are now subscribed -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Subscribe

2016-01-03 Thread Brett Stahlman
Hello Brett Stahlman :-) You are now subscribed -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: Issue with wait

2016-01-03 Thread Alexander Burger
Hi Henrik, > "In fact, it has. 'wait' always first checks for pending events before > it goes to sleep." > > Why does it do that? This is exactly the purpose of 'wait': Wait for events. The milliseconds are just a timeout value. > If I had access to a wait that simply stops > execution and

Re: Questions about EmuLisp

2016-01-03 Thread Alexander Burger
Hi Christophe, > These are primarily questions for Alex, but I'm interested > in the answers of other people too. I'm afraid that I don't have useful answers, but I try ... > 1) What do you think of EmuLisp? I like the fact that it is written in JS, but I don't know its limitations. > 2)

Re: Issue with wait

2016-01-03 Thread Alexander Burger
Hi Henrik, On Sat, Jan 02, 2016 at 10:34:25PM +0100, Henrik Sarvell wrote: > I've recently implemented pub / sub ( http://redis.io/topics/pubsub ) > in my redis class ( > https://bitbucket.org/hsarvell/ext/src/default/redis.l?fileviewer=file-view-default > ). Cool! > (subscribe> R "foo") >

Re: Issue with wait

2016-01-03 Thread Henrik Sarvell
Hi Alex, thanks for that clarification. "In fact, it has. 'wait' always first checks for pending events before it goes to sleep." Why does it do that? If I had access to a wait that simply stops execution and nothing else everything would be good, I tried to create one of my own but it uses too