Re: [racket-users] Typed Syndicate Status

2020-03-10 Thread Ray Racine
Syndicate usage is primarily has been in three areas. 1. A Bluetooth LE (low energy) library. Syndicate was a very nice fit here because at the base level Bluetooth BLE CSR Mesh is all about asynch sending of low level HCI commands and async responses and inbound events. After several different

Re: [racket-users] Typed Syndicate Status

2020-03-10 Thread Sam Caldwell
Er, jumped the gun a bit; On Tue, Mar 10, 2020 at 10:25 AM Ray Racine wrote: > >> For a new project with Syndicate I'd like to jump up to typed/syndicate >> if possible even if it is a little bit "early". As expected it looks like >> PLT's approach to typing dataspaces, tuples spaces, actors an

Re: [racket-users] Typed Syndicate Status

2020-03-10 Thread Sam Caldwell
hi Ray, On Tue, Mar 10, 2020 at 10:25 AM Ray Racine wrote: > For a new project with Syndicate I'd like to jump up to typed/syndicate if > possible even if it is a little bit "early". As expected it looks like > PLT's approach to typing dataspaces, tuples spaces, actors and messaging > looks n

[racket-users] Typed Syndicate Status

2020-03-10 Thread Ray Racine
Syndicate is just a brilliant piece software. Such a novel approach to the Actor model and concurrency. With past use I've pushed as much of the code into Typed Racket as possible leaving only the Syndicate layer Untyped. Over the past year I've noted steady work towards #lang typed/syndicate su