scopeeventtype.java
来自「一个不错的cache」· Java 代码 · 共 34 行
JAVA
34 行
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.oscache.base.events;/** * This is an enumeration of all the possible events that may occur * at the scope level. Scope-level events are only relevant to the * <code>ServletCacheAdministrator</code>. * * @version $Revision: 1.1 $ * @author <a href="mailto:fbeauregard@pyxis-tech.com">Francois Beauregard</a> */public final class ScopeEventType { /** * Specifies an event type for the all scope flushed event. */ public static ScopeEventType ALL_SCOPES_FLUSHED = new ScopeEventType(); /** * Specifies an event type for the flushing of a specific scope. */ public static ScopeEventType SCOPE_FLUSHED = new ScopeEventType(); /** * Private constructor to ensure that no object of that type are * created externally. */ private ScopeEventType() { }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?