org.apache.camel.spi.TransformerRegistry Maven / Gradle / Ivy
The newest version!
/*
* 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.spi;
import java.util.Map;
import org.apache.camel.StaticService;
/**
* Registry to cache transformers in memory.
*
* The registry contains two caches:
*
* - static - which keeps all the transformers in the cache for the entire lifecycle
* - dynamic - which keeps the transformers in a {@link org.apache.camel.support.LRUCache} and may evict transformers
* which hasn't been requested recently
*
* The static cache stores all the transformers that are created as part of setting up and starting routes. The static
* cache has no upper limit.
*
* The dynamic cache stores the transformers that are created and used ad-hoc, such as from custom Java code that
* creates new transformers etc. The dynamic cache has an upper limit, that by default is 1000 entries.
*/
public interface TransformerRegistry extends Map, StaticService {
/**
* Lookup a {@link Transformer} in the registry which supports the transformation for the data types represented by
* the key.
*
* @param key a key represents the from/to data types to transform
* @return {@link Transformer} if matched, otherwise null
*/
Transformer resolveTransformer(TransformerKey key);
/**
* Number of transformers in the static registry.
*/
int staticSize();
/**
* Number of transformers in the dynamic registry
*/
int dynamicSize();
/**
* Maximum number of entries to store in the dynamic registry
*/
int getMaximumCacheSize();
/**
* Purges the cache (removes transformers from the dynamic cache)
*/
void purge();
/**
* Whether the given transformer is stored in the static cache
*
* @param scheme the scheme supported by this transformer
* @return true if in static cache, false if not
*/
boolean isStatic(String scheme);
/**
* Whether the given transformer is stored in the static cache
*
* @param from 'from' data type
* @param to 'to' data type
* @return true if in static cache, false if not
*/
boolean isStatic(DataType from, DataType to);
/**
* Whether the given transformer is stored in the dynamic cache
*
* @param scheme the scheme supported by this transformer
* @return true if in dynamic cache, false if not
*/
boolean isDynamic(String scheme);
/**
* Whether the given {@link Transformer} is stored in the dynamic cache
*
* @param from 'from' data type
* @param to 'to' data type
* @return true if in dynamic cache, false if not
*/
boolean isDynamic(DataType from, DataType to);
/**
* Cleanup the cache (purging stale entries)
*/
void cleanUp();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy