http://www.jsoftware.com/jwiki/PascalJasmin/OOP%20scheduler%20and%20ZeroMQ
Thanks to Scott for getting this started. Its a work in progress, but its probably more helpful to see the simplest core version first, than just the bloated version. The scheduler is a framework for multitasking several polling (endless) loops within a single J instance. The simplest multithreading synchronization library is avoiding multithreading altogether, and an in process scheduler allows what are semantically seperate processes to work together without concerning yourself about the possibilities of one process writting to a variable that is being read or written to by another process. It can integrate with other "real" multiprocessing setups by grouping together tasks that need tight cooperation. The canonical usefulness is for socket programing, which typically involve polling loops for each client and server that add testing tedium even with just a single client and server. The scheduler eases development and testing of several clients and servers all in a single application, and simplifies testing/learning of frameworks like ZeroMQ and its J implementation. ________________________________ From: Björn Helgason <[email protected]> To: Programming forum <[email protected]> Sent: Thursday, November 21, 2013 12:50:09 PM Subject: Re: [Jprogramming] fif addons thx pretty nice On 21 Nov 2013 17:02, "bill lam" <[email protected]> wrote: > Have your android device rooted and install busybox. Then grep > will be available. > > Чт, 21 ноя 2013, Björn Helgason писал(а): > > When I try to run plot in either console or jhs on android I get a value > > error on StartActivity. > > > > Knowing from former experiments that addons can ruin my installation I do > > not want to install all addons. > > > > It may take a long time to go through the addons one by one so I am > looking > > for a way to search the addons I have not installed for which one > contains > > what I need. > > > > The help might also be a bit more specific of how to use fif in jhs on > the > > android if I want to look through everything. > > > > Examples would be nice. > > > > It would also be good to be able to chose where the J folders are > installed. > > ---------------------------------------------------------------------- > > For information about J forums see http://www.jsoftware.com/forums.htm > > -- > regards, > ==================================================== > GPG key 1024D/4434BAB3 2008-08-24 > gpg --keyserver subkeys.pgp.net --recv-keys 4434BAB3 > gpg --keyserver subkeys.pgp.net --armor --export 4434BAB3 > ---------------------------------------------------------------------- > For information about J forums see http://www.jsoftware.com/forums.htm ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
