![]() |
Code Examples
A repository of 155 code examples for BeepBeep
|
Send events from one processor to another over a network. More...
Packages | |
package | httppush |
Use HTTP gateways in push mode. | |
Classes | |
class | CompoundObject |
A dummy object used to show serialization. More... | |
Send events from one processor to another over a network.
Thus, a chain of processors can be setup on a first machine, whose output is then relayed to a chain of processors on another machine. This has for effect of distributing the computation of a processor chain across multiple hosts.
There are multiple reasons why one would like to distribute computation.
In BeepBeep, splitting a processor chain across machines is generally done by combining two palettes:
The examples in this section show a simple form of distribution where two machines (called A and B) communicate across a network. Machine A is the upstream machine, and executes the first part of a processor chain; Machine B is the downstream machine, and receives events from Machine A to continue the computation with further processors.