blob: cafe852e8d4d088483a55eb444cbe3a5a2d73d2e [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.util;
/**
* Represents a thread safe map of values which timeout after a period of
* inactivity.
*
* @version $Revision$
*/
public interface TimeoutMap<K, V> extends Runnable {
/**
* Looks up the value in the map by the given key.
*
* @param key the key of the value to search for
* @return the value for the given key or null if it is not present (or has timed out)
*/
V get(K key);
/**
* Returns a copy of the keys in the map
*
* @return the keys
*/
Object[] getKeys();
/**
* Returns the size of the map
*
* @return the size
*/
int size();
/**
* Adds the key value pair into the map such that some time after the given
* timeout the entry will be evicted
*
* @param key the key
* @param value the value
* @param timeoutMillis timeout in millis
*/
void put(K key, V value, long timeoutMillis);
/**
* Callback when the value has been evicted
*
* @param key the key
* @param value the value
*/
void onEviction(K key, V value);
/**
* Removes the object with the given key
*
* @param key key for the object to remove
*/
void remove(K key);
/**
* Purges any old entries from the map
*/
void purge();
}