|
Akka/Scala example source code file (ContextProvider.scala)
The ContextProvider.scala Akka example source code/** * Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> */ package akka.camel import akka.actor.ExtendedActorSystem import org.apache.camel.impl.DefaultCamelContext /** * Implement this interface in order to inject a specific CamelContext in a system * An instance of this class must be instantiable using a no-arg constructor. */ trait ContextProvider { /** * Retrieve or create a Camel Context for the given actor system * Called once per actor system */ def getContext(system: ExtendedActorSystem): DefaultCamelContext } /** * Default implementation of [[akka.camel.ContextProvider]] * Provides a new DefaultCamelContext per actor system */ final class DefaultContextProvider extends ContextProvider { override def getContext(system: ExtendedActorSystem) = new DefaultCamelContext } Other Akka source code examplesHere is a short list of links related to this Akka ContextProvider.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.