01: /*
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999 Bull S.A.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: Sender1_2.java 5115 2004-07-09 14:40:18Z coqp $
23: * --------------------------------------------------------------------------
24: */
25:
26: package org.objectweb.jonas.jtests.beans.message;
27:
28: import java.rmi.RemoteException;
29: import javax.ejb.EJBObject;
30:
31: /**
32: * Sender1_2 remote interface
33: */
34: public interface Sender1_2 extends EJBObject {
35:
36: /**
37: * send messages on destination
38: * the transaction is demarcated before the session creation
39: * @param dest destination (topic or queue JNDI name)
40: * @param val value set in messages
41: * @param nb number of messages sent
42: * @param boolean commit transaction if true
43: */
44: void sendOnDestinationWithTxBeforeSession(String dest, int val,
45: int nb, boolean commit) throws RemoteException;
46:
47: /**
48: * send messages on destination
49: * the transaction is demarcated after the session creation
50: * @param dest destination (topic or queue JNDI name)
51: * @param val value set in messages
52: * @param nb nb of messages sent
53: * @param boolean commit transaction if true
54: */
55:
56: void sendOnDestinationWithTxAfterSession(String dest, int val,
57: int nb, boolean commit) throws RemoteException;
58:
59: /**
60: * Check messages received.
61: * @param val value looked in messages received
62: * @param nb nb of messages that could be received
63: * @param sec nb of seconds max to wait for all messages
64: * @return actual nb of messages received
65: */
66: int check(int val, int nb, int sec) throws RemoteException;
67:
68: /**
69: * Clean all entity beans for this value
70: * @param val value looked in messages
71: */
72: void clean(int val) throws RemoteException;
73: }
|