|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ScopeEventListener.java | - | - | - | - |
|
1 | /* | |
2 | * Copyright (c) 2002-2003 by OpenSymphony | |
3 | * All rights reserved. | |
4 | */ | |
5 | package com.opensymphony.oscache.base.events; | |
6 | ||
7 | ||
8 | /** | |
9 | * This is the interface to listen to scope events. The events are | |
10 | * scope flushed and all scope flushed, and are dispatched thru this interface | |
11 | * | |
12 | * @version $Revision: 1.1 $ | |
13 | * @author <a href="mailto:fbeauregard@pyxis-tech.com">Francois Beauregard</a> | |
14 | */ | |
15 | public interface ScopeEventListener extends CacheEventListener { | |
16 | /** | |
17 | * Event fired when a specific or all scopes are flushed. | |
18 | * Use getEventType to differentiate between the two. | |
19 | */ | |
20 | public void scopeFlushed(ScopeEvent event); | |
21 | } |
|