📄 ejbasynctimeoutexception.java
字号:
/**
* javax.ejb.async - Proposed Classes/Interfaces for EJB Async support
*
* @version 1.1
* @author Andrzej Jan Taramina, Chaeron Consulting Corporation
*/
package javax.ejb.async;
//***************************************************************************
//*
//* Imports
//*
//***************************************************************************/
import java.rmi.*;
//***************************************************************************
//*
//* EJBAsyncTimeoutException Class definition
//*
//***************************************************************************/
/**
* The </code>EJBAsyncTimeoutException</code> class is used by the EJB Server/Container to
* notify the user that an asynchronous method invocation timed out. This exception will be
* returned inside a (</code>EJBAsyncResult</code>) object and passed to the user's
* callback (</code>EJBAsyncCallback</code>)routine for asynchronous invocations.
*
* @see javax.ejb.async.EJBAsyncCallback
* @see javax.ejb.async.EJBAsyncResult
*
* @author Andrzej Jan Taramina, Chaeron Consulting Corporation
* @version 1.1, 03/17/99
*/
public class EJBAsyncTimeoutException extends RemoteException
{
//***************************************************************************
//*
//* Constant definitions
//*
//***************************************************************************/
//***************************************************************************
//*
//* Attributes
//*
//***************************************************************************/
//***************************************************************************
//*
//* EJBAsyncTimeoutException methods
//*
//***************************************************************************/
// No additional methods required.
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -