- Timestamp:
- 10/11/13 13:44:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/main/java/omq/server/InvocationThread.java
r100 r101 40 40 private long lastExec; 41 41 42 private RemoteThreadPool pool; // TODO posar això bé42 private RemoteThreadPool pool; 43 43 44 44 // Broker … … 52 52 private boolean killed = false; 53 53 54 public InvocationThread(RemoteObject obj , Broker broker) throws Exception {54 public InvocationThread(RemoteObject obj) throws Exception { 55 55 this.obj = obj; 56 56 this.UID = obj.getRef(); 57 57 this.env = obj.getEnv(); 58 this.broker = broker; 58 this.broker = obj.getBroker(); 59 this.pool = obj.getPool(); 59 60 this.serializer = broker.getSerializer(); 60 61 this.lastExec = 0; … … 151 152 logger.error(e); 152 153 } catch (Exception e) { 154 e.printStackTrace(); 153 155 logger.error(e); 154 156 }
Note: See TracChangeset
for help on using the changeset viewer.