blob: 014d029da570e17d88373f083fe48bd3de0eb57b [file] [log] [blame]
/**
* 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.
*/
package org.apache.camel
package scala.dsl
import org.apache.camel.model.OnExceptionDefinition
import org.apache.camel.scala.dsl.builder.RouteBuilder
import org.apache.camel.Exchange
/**
* Scala enrichment for Camel's OnExceptionDefinition
*/
case class SOnExceptionDefinition(override val target: OnExceptionDefinition)(implicit val builder: RouteBuilder) extends SAbstractDefinition[OnExceptionDefinition] {
override def apply(block: => Unit) = super.apply(block).asInstanceOf[SOnExceptionDefinition]
def handled = wrap(target.handled(true))
def handled(predicate: Exchange => Any) = wrap(target.handled(predicateBuilder(predicate)))
def continued = wrap(target.continued(true))
def continued(predicate: Exchange => Any) = wrap(target.continued(predicateBuilder(predicate)))
def maximumRedeliveries(count: Int) = wrap(target.maximumRedeliveries(count))
def onRedelivery(processor: Exchange => Unit) = wrap(target.onRedelivery(new ScalaProcessor(processor)))
def onWhen(when: Exchange => Any) = wrap(target.onWhen(predicateBuilder(when)))
def retryWhile(retryWhile: Exchange => Any) = wrap(target.retryWhile(predicateBuilder(retryWhile)))
def useOriginalMessage = wrap(target.useOriginalMessage)
override def wrap(block: => Unit) = super.wrap(block).asInstanceOf[SOnExceptionDefinition]
}