📄 eventhandleradapter.java
字号:
/*- * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -