All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.akka-camel.src.test.resources.application.conf Maven / Gradle / Ivy

################################################################################
#
#    Licensed to the Apache Software Foundation (ASF) under one or more
#    contributor license agreements.  See the NOTICE file distributed with
#    this work for additional information regarding copyright ownership.
#    The ASF licenses this file to You under the Apache License, Version 2.0
#    (the "License"); you may not use this file except in compliance with
#    the License.  You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#
################################################################################

akka {
  actor.deployment {
  # there's no extra configuration here at the moment, but you could
  # configure routers, log levels, ... or whatever settings you need
  # for your own application

  }

  # This is a copy of the akka-camel reference.conf
  # TODO: work out a better solution (extender to load configs from reference.conf into the OSGi Service Registry)
  camel {
    # Whether JMX should be enabled or disabled for the Camel Context
    jmx = off
    # enable/disable streaming cache on the Camel Context
    streamingCache = on
    consumer {
      # Configured setting which determines whether one-way communications
      # between an endpoint and this consumer actor
      # should be auto-acknowledged or application-acknowledged.
      # This flag has only effect when exchange is in-only.
      auto-ack = on

      # When endpoint is out-capable (can produce responses) reply-timeout is the
      # maximum time the endpoint can take to send the response before the message
      # exchange fails. This setting is used for out-capable, in-only,
      # manually acknowledged communication
      reply-timeout = 1m

      # The duration of time to await activation of an endpoint.
      activation-timeout = 10s
    }

    #Scheme to FQCN mappings for CamelMessage body conversions
    conversions {
      "file" = "java.io.InputStream"
    }
  }

  loggers = ["akka.event.slf4j.Slf4jLogger"]
  loglevel = DEBUG

  debug {
    lifecyle = on
    event-stream = on
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy