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