eventhandleradapter.java
来自「linux 下的源代码分析阅读器 red hat公司新版」· Java 代码 · 共 27 行
JAVA
27 行
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000,2007 Oracle. All rights reserved. * * $Id: EventHandlerAdapter.java,v 1.4 2007/07/06 00:22:54 mjc Exp $ */package com.sleepycat.db;import com.sleepycat.db.EventHandler;/* * An abstract implementation of the EventHandler class can be extended by * the application to implement customized handling for any event generated * by Berkeley DB. */public abstract class EventHandlerAdapter implements EventHandler { public void handlePanicEvent() {} public void handleRepClientEvent() {} public void handleRepElectedEvent() {} public void handleRepMasterEvent() {} public void handleRepNewMasterEvent(int envId) {} public void handleRepPermFailedEvent() {} public void handleRepStartupDoneEvent() {} public void handleWriteFailedEvent(int errorCode) {}}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?