Changeset 11 for trunk/objectmq/src/omq/ztest
- Timestamp:
- 05/17/13 15:41:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/objectmq/src/omq/ztest/calculator/CalculatorTest.java
r9 r11 22 22 23 23 // Get host info of rabbimq (where it is) 24 env.setProperty(ParameterQueue.SERVER_HOST, "1 27.0.0.1");24 env.setProperty(ParameterQueue.SERVER_HOST, "10.30.239.228"); 25 25 env.setProperty(ParameterQueue.SERVER_PORT, "5672"); 26 env.setProperty(ParameterQueue.SERIALIZERNAME, "omq.common.util.Serializers.KryoImp"); 27 env.setProperty(ParameterQueue.ENABLECOMPRESSION, "true"); 26 28 27 29 // Get info about the queue & the exchange where the RemoteListener will … … 44 46 45 47 // Set host info of rabbimq (where it is) 46 env.setProperty(ParameterQueue.SERVER_HOST, "1 27.0.0.1");48 env.setProperty(ParameterQueue.SERVER_HOST, "10.30.239.228"); 47 49 env.setProperty(ParameterQueue.SERVER_PORT, "5672"); 48 50 env.setProperty(ParameterQueue.SERIALIZERNAME, "omq.common.util.Serializers.KryoImp"); 51 env.setProperty(ParameterQueue.ENABLECOMPRESSION, "true"); 52 49 53 // Set info about where the message will be sent 50 54 env.setProperty(ParameterQueue.RPC_EXCHANGE, "rpc_exchange"); … … 57 61 58 62 Broker.initBroker(env); 59 60 63 remoteCalc = (Calculator) Broker.lookup(Calculator.class.getSimpleName(), Calculator.class); 61 64 }
Note: See TracChangeset
for help on using the changeset viewer.