alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Akka/Scala example source code file (ContextProvider.scala)

This example Akka source code file (ContextProvider.scala) is included in my "Source Code Warehouse" project. The intent of this project is to help you more easily find Akka and Scala source code examples by using tags.

All credit for the original source code belongs to akka.io; I'm just trying to make examples easier to find. (For my Scala work, see my Scala examples and tutorials.)

Akka tags/keywords

actor, akka, camel, contextprovider, defaultcamelcontext, defaultcontextprovider, extendedactorsystem

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 examples

Here 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

 

new blog posts

 

Copyright 1998-2021 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.