Skip to content

Mackenzie-High/Cascade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cascade

Cascade is an embeddable actor framework contained within a single Java source-file.

Latest JavaDoc: Available Here

Source Code: Available Here

Detailed Code Coverage: Available Here

Compilation and Installation

git clone 'https://github.com/Mackenzie-High/Cascade.git'
cd Cascade/
git checkout REL_CASCADE_2_0_2_BETA
mvn clean install

Actors

An actor is an object that has: (1) an input connector, (2) an input queue, (3) an output connector, (4) a function that transforms input messages into output messages.

Actors can be connected to one another by connecting their input/output connectors to one another. Each actor can be connected to an arbitrary number of inputs and/or outputs.

Examples

Hello World

Consumer Script based Actors:

Function Script based Actors:

Context Script based Actors:

Advanced Topics: