MsgUnitRaw[] rawReturnValArr = this.driver.get(key, qos); // Invoke remote server
connectionsHandler.getDispatchStatistic().incrNumGet(1);
MsgUnit[] msgUnitArr = new MsgUnit[rawReturnValArr.length];
if (getEntry.wantReturnObj()) {
for (int ii=0; ii<rawReturnValArr.length; ii++) {
if (this.securityInterceptor != null) { // decrypt return value ...
CryptDataHolder dataHolder = new CryptDataHolder(MethodName.GET, rawReturnValArr[ii]);
dataHolder.setReturnValue(true);
rawReturnValArr[ii] = securityInterceptor.importMessage(dataHolder);