README.txt in journeta-0.0.4 vs README.txt in journeta-0.0.5

- old
+ new

@@ -12,10 +12,11 @@ * Are running a compatible Journeta version. * Have access to the same class definitions if you are sending your own custom objects. * Do not have a firewall preventing network I/O. Journeta uses Ruby threading to manage the asynchonous nature of peer-to-peer I/O. +Data you send from your application thread will be queued and sent asynrchonously as soon as possible. For insight into events internal to the library, start ruby with the `--debug` options. == Use @@ -25,10 +26,21 @@ A completely distributed, zero-configuration-required chat room script. Fire up several instances in separate terminals. Multiple instances on the same machine is ok. Everything you type will automatically be sent to all other instances on the LAN! Use `ruby --debug examples/instant_messenger.rb` for detailed internal event details. + examples/instant_messenger_gui.rb + A GUI version of the above client. Require the wxruby gem. (`sudo gem install wxruby`) + + examples/queue_server.rb + examples/queue_client.rb + + A simple queue managed by a server. Each client produces jobs to be queued, and processes jobs + sent from the server(s). All nodes automatically find eachother. Try running multiples clients, + and then multiple servers. Notice that when you have N servers, each job gets run N times, + and not necessarilly by the same client! + == Author Preston Lee <preston.lee at openrain d0t com> http://www.prestonlee.com http://www.openrain.com