Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ugol/gamel

Camel experiments in go
https://github.com/ugol/gamel

Last synced: 27 days ago
JSON representation

Camel experiments in go

Awesome Lists containing this project

README

        

# Gamel

Gamel is an experimental framework to reimplement most of [Apache Camel](http://camel.apache.org) in Go.

```go
context := core.NewGamelContext()
route, _ := core.NewRouteBuilder(context).
From("timer:tick?period=2000").
To("log:INFO").
Build()

context.AddRoute(route)
context.Start()

time.Sleep(20 * time.Second)
context.Stop()
```