<div dir="ltr"><div dir="ltr"><div>Hi Dave,</div><div><br></div><div>I saw your RemoteTask the other day and had a quick question about it.<br></div><div><br></div><div>Do you see any pitfalls doing operations that require or provide sensitive security key information as input, or output.</div><div><br></div><div>As an analogy, I've been using my own convenience method on OSProcess to give me a way get Linux command output into the image, but it does so by simply redirecting the command's output to a file, reading that file into an in-image String, then deleting the file.  But that's not something I would want to use if it involved passing a password, for example.</div><div><br></div><div>My hope is RemoteTask operates all in memory and does not utilize the hard drive to accomplish that.</div><div><br></div><div>Thanks,</div><div>  Chris</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Sep 26, 2020 at 7:06 PM David T. Lewis <<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> <br>
On Sat, Sep 26, 2020 at 03:20:10PM -0700, tim Rowledge wrote:<br>
> <br>
> And multi-core? Well yes I suppose. Except that one can very easily spawn multiple running images using Dave Lewis' OSProcess package, including in ways that do some work and return the results.The spawning takes very little time; for example on said Pi4 it takes 39mS to do <br>
>     UnixProcess forkHeadlessSqueakAndDoThenQuit: [UnixProcess helloWorld]<br>
<br>
<OT><br>
Or the somewhat more interesting example:<br>
<br>
   RemoteTask do: [3 + 4] ==> 7<br>
<br>
which completes in on the order of 10ms on my PC, and hopefully not too<br>
much worse on Pi4. The [3 + 4] block is evaluated in a spawned image with<br>
results returned to the parent image.<br>
</OT><br>
<br>
Dave<br>
<br>
<br>
</blockquote></div></div>