Changeset 83 for trunk/src/main/java/omq/server/RemoteWrapper.java
- Timestamp:
- 07/08/13 13:29:24 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main/java/omq/server/RemoteWrapper.java
r53 r83 13 13 14 14 /** 15 * This class is used to encapsulate the invocationThreads under the 16 * RemoteObject. 15 17 * 16 18 * @author Sergi Toda <sergi.toda@estudiants.urv.cat> … … 40 42 } 41 43 44 /** 45 * This method notifies a delivery to an invocationThread using a 46 * blockingQueue. 47 * 48 * @param delivery 49 * - delivery which contains a Request to be invoked 50 * @throws Exception 51 */ 42 52 public void notifyDelivery(Delivery delivery) throws Exception { 43 53 this.deliveryQueue.put(delivery); 44 54 } 45 55 56 /** 57 * This method interrups all the invocationThreads under this remoteWrapper 58 */ 46 59 public void stopRemoteWrapper() { 47 60 logger.warn("Stopping Invocation threads vinculed to " + obj.getRef());
Note: See TracChangeset
for help on using the changeset viewer.