test.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 37 行

JAVA
37
字号
package com.caucho.hessian.test;import java.io.IOException;/** * The Test service is a quick sanity check service.  Developers of a * new Hessian implementation can use this service as an initial test. */public interface Test {  /**   * Does nothing.   */  public void nullCall();    /**   * Hello, World.   */  public String hello();    /**   * Subtraction   */  public int subtract(int a, int b);    /**   * Echos the object to the server.   * <pre>   */  public Object echo(Object value);    /**   * Throws an application fault.   */  public void fault()    throws IOException;}

⌨️ 快捷键说明

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