Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-07 Thread Siemen Baader
Wow, thanks for your help, Alistair! I'll try it out. cheers, Siemen On Sun, May 6, 2018 at 7:47 PM, Alistair Grant wrote: > Hi Siemen & Mariano, > > On 5 May 2018 at 16:26, Mariano Martinez Peck > wrote: > > Hi Siemen, > > > > You may want to check the pipe support code in OSSubprocess [1].

Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-06 Thread Alistair Grant
Hi Siemen & Mariano, On 5 May 2018 at 16:26, Mariano Martinez Peck wrote: > Hi Siemen, > > You may want to check the pipe support code in OSSubprocess [1]. Note that > the pipes should work outside of OSSubprocess. You can read the > documentation as well as the unit tests for the pipes. > > Chee

Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-05 Thread Siemen Baader
Thanks, I'll check it out! -- Siemen On Sat, May 5, 2018 at 4:26 PM, Mariano Martinez Peck wrote: > Hi Siemen, > > You may want to check the pipe support code in OSSubprocess [1]. Note that > the pipes should work outside of OSSubprocess. You can read the > documentation as well as the unit tes

Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-05 Thread Mariano Martinez Peck
Hi Siemen, You may want to check the pipe support code in OSSubprocess [1]. Note that the pipes should work outside of OSSubprocess. You can read the documentation as well as the unit tests for the pipes. Cheers, [1] https://github.com/marianopeck/OSSubprocess On Sat, May 5, 2018 at 8:29 AM, Si

[Pharo-users] reading from a named pipe in Pharo

2018-05-05 Thread Siemen Baader
Hi, I'd like to use an external tool to edit HTML code and then store and version it in my Pharo image. I'd like to create a named pipe that the external application will save to, and then have Pharo watch for whenever the named pipe is written to and then execute code to handle the data from ther