An open API service indexing awesome lists of open source software.

https://github.com/ericfreese/contrived-thrift-example

A contrived example of Apache Thrift
https://github.com/ericfreese/contrived-thrift-example

Last synced: 8 months ago
JSON representation

A contrived example of Apache Thrift

Awesome Lists containing this project

README

          

```
$ docker-compose up
add_1 |
add_1 | > add@1.0.0 start /usr/src
add_1 | > node index.js
add_1 |
multiply_1 |
multiply_1 | > multiply@1.0.0 start /usr/src
multiply_1 | > node index.js
multiply_1 |
calculator_1 |
calculator_1 | > calculator@1.0.0 start /usr/src
calculator_1 | > node index.js
calculator_1 |
add_1 | add( 4 , 3 )
multiply_1 | multiply( 6 , 8 )
add_1 | add( 0 , 6 )
calculator_1 | 4+3=7
add_1 | add( 6 , 6 )
add_1 | add( 12 , 6 )
add_1 | add( 18 , 6 )
add_1 | add( 24 , 6 )
add_1 | add( 30 , 6 )
add_1 | add( 36 , 6 )
add_1 | add( 42 , 6 )
calculator_1 | 6*8=48
```