added more docs for camel, couldnt resist to also remove a ; from DefaultCamel

This commit is contained in:
RayRoestenburg 2012-06-26 00:47:06 +02:00
parent 91268365c1
commit 92e3ca2629
5 changed files with 262 additions and 11 deletions

View file

@ -0,0 +1,14 @@
package docs.camel
object Producers {
{
//#Producer1
import akka.camel.Producer
import akka.actor.Actor
class Producer1 extends Actor with Producer {
def endpointUri = "http://localhost:8080/news"
}
//#Producer1
}
}