📄 statelesssessionexample.java
字号:
/** * JBoss, Home of Professional Open Source * * Distributable under LGPL license. * See terms of license at gnu.org. */package org.jboss.example.jms.stateless.bean;import java.rmi.RemoteException;import javax.ejb.EJBObject;/** * @author <a href="mailto:ovidiu@feodorov.com">Ovidiu Feodorov</a> * @version <tt>$Revision: 2868 $</tt> * $Id: StatelessSessionExample.java 2868 2007-07-10 20:22:16Z timfox $ */public interface StatelessSessionExample extends EJBObject{ public void drain(String queueName) throws RemoteException, Exception; public void send(String txt, String queueName) throws RemoteException, Exception; public int browse(String queueName) throws RemoteException, Exception; public String receive(String queueName) throws RemoteException, Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -