1 25 26 28 package org.objectweb.jonas.jtests.beans.message; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 36 public interface Sender extends EJBObject { 37 38 44 public void sendOnTopic(String dest, int val, int nb) throws RemoteException ; 45 46 52 public void sendOnTopicTx(String dest, int val, int nb) throws RemoteException ; 53 54 60 public void sendOnQueue(String dest, int val, int nb) throws RemoteException ; 61 62 68 public void sendOnQueueTx(String dest, int val, int nb) throws RemoteException ; 69 70 79 public int check(int val, int nb, int sec) throws RemoteException ; 80 81 84 public void clean(int val) throws RemoteException ; 85 } 86 | Popular Tags |