⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jobhostwssei.java

📁 这是一个基于计算网格的web service。它用java编写。一旦安装完成
💻 JAVA
字号:
package jwsgrid.jobhost.ws;/** * This is the service endpoint interface for the JobHostWSweb service. * Created 28-Apr-2005 9:30:36 AM * @author sean */public interface JobHostWSSEI extends java.rmi.Remote {    /**     * Web service operation     */    public String submitJob(java.lang.String ownerId, java.lang.String xmlJobDescrBundle, int jobDescrIndex, javax.activation.DataHandler jobZippedData) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public void stopJob(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getJobStatus(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getJobStatus(java.lang.String ownerId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public javax.activation.DataHandler getJobOutputFile(java.lang.String ownerId, java.lang.String jobId, java.lang.String filePath) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public javax.activation.DataHandler getJobOutputFiles(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public long ping() throws java.rmi.RemoteException;    /**     * Web service operation     */    public void startJob(java.lang.String jobOwner, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public void destroyJob(java.lang.String jobOwner, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getDynamicInfo() throws Exception, java.rmi.RemoteException;    }

⌨️ 快捷键说明

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