|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SortedEvictionQueue.java | - | - | - | - |
|
1 | /* | |
2 | * JBoss, the OpenSource J2EE webOS | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | package org.jboss.cache.eviction; | |
8 | ||
9 | /** | |
10 | * Sorted Eviction Queue implementation. | |
11 | * | |
12 | * @author Daniel Huang (dhuang@jboss.org) | |
13 | * @version $Revision: 1.1 $ | |
14 | */ | |
15 | public interface SortedEvictionQueue extends EvictionQueue | |
16 | { | |
17 | /** | |
18 | * Provide contract to resort a sorted queue. | |
19 | */ | |
20 | public void resortEvictionQueue(); | |
21 | } |
|