blob: c8a5772908b3ac639e8880e3c4ecd75f950290b1 [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;
import java.util.Map;
/**
* Represents an entry in a {@link TimeoutMap}
*
* @version $Revision$
*/
public class TimeoutMapEntry implements Comparable, Map.Entry {
private Object key;
private Object value;
private long timeout;
private long expireTime;
public TimeoutMapEntry(Object id, Object handler, long timeout) {
this.key = id;
this.value = handler;
this.timeout = timeout;
}
public Object getKey() {
return key;
}
public long getExpireTime() {
return expireTime;
}
public void setExpireTime(long expireTime) {
this.expireTime = expireTime;
}
public Object getValue() {
return value;
}
public Object setValue(Object value) {
Object oldValue = this.value;
this.value = value;
return oldValue;
}
public long getTimeout() {
return timeout;
}
public void setTimeout(long timeout) {
this.timeout = timeout;
}
public int compareTo(Object that) {
if (this == that) {
return 0;
}
if (that instanceof TimeoutMapEntry) {
return compareTo((TimeoutMapEntry) that);
}
return 1;
}
public int compareTo(TimeoutMapEntry that) {
long diff = this.expireTime - that.expireTime;
if (diff > 0) {
return 1;
} else if (diff < 0) {
return -1;
}
return this.key.hashCode() - that.key.hashCode();
}
public String toString() {
return "Entry for key: " + key;
}
}