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

📄 staxjobcompletelistener.java

📁 Software Testing Automation Framework (STAF)的开发代码
💻 JAVA
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF)                              *//* (C) Copyright IBM Corp. 2002                                              *//*                                                                           *//* This software is licensed under the Common Public License (CPL) V1.0.     *//*****************************************************************************/package com.ibm.staf.service.stax;/** * An interface which listens for notification that a STAX job is terminating. * * The class that is interested in knowing when a STAF job it submits has * completed implements this interface, and the object created with that class * is registered by passing itself as the listener argument when calling the * job's addCompletionNotifee method.  When a job completes, that object's * jobComplete method is invoked. * <p> * For example, STAX implements this interface so that it is notified when * the STAX jobs it submits for execution have completed so it can remove * the job from its map of active jobs. * * @see    STAXJob */public interface STAXJobCompleteListener{    /**     * Called by STAXJob when terminating the execution of a STAX job.     * The job object representing the job that completed is passed in.     * <p>     *     * @param job an object representing the STAX job being terminated     */    public void jobComplete(STAXJob job);}

⌨️ 快捷键说明

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