delegate.java

来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 21 行

JAVA
21
字号
import org.ozoneDB.OzoneRemote;/** * $Id: $ */public interface Delegate extends OzoneRemote {    /** all included update methods will join the started transaction     *  and the whole operation will execute atomically     */    void updateFooBar(String aVal, String bVal, int cVal) throws Exception;    /** since no exception is thrown each update method will execute atomically     * i.e. individual rollback instead of complete roll back.     * This is an example of what you normally should NOT do     */    void updateFooBar2(String aVal, String bVal, int cVal);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?