Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ugol/gamel
- Owner: ugol
- Created: 2016-11-20T15:53:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T21:29:05.000Z (about 6 years ago)
- Last Synced: 2024-11-04T18:45:36.424Z (2 months ago)
- Language: Go
- Size: 56.6 KB
- Stars: 21
- Watchers: 7
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - ugol/gamel - Camel experiments in go (Go)
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()
```