393394395396397398399400401402403
ctxList.pop(); if (ctxList.getSize() == 0) { writeRequestContextLists.remove(from); } if (ctx != null) { ctx.reply(reply); saveWriteRequestTable(); } else { Trace.logger.log(BasicLevel.ERROR, "Reply context not found: " + from + ", " + reply);
559560561562563564565566567568569
initRequestContextLists.remove(name); while (ctxList.getSize() > 0) { RequestContext reqCtx = ctxList.get(); JndiReply reply = invoke(reqCtx); if (reply != null) { reqCtx.reply(reply); } ctxList.pop(); } } saveInitRequestTable();
642643644645646647648649650651652
syncRequestContextLists.remove(from); } if (ctx != null) { JndiReply reply = invoke(ctx); if (reply != null) { ctx.reply(reply); saveSyncRequestTable(); } } }