137138139140141142143
PrimitiveExplainer.getInstance(invoker.getFunctionName())); if (library.isCompiled()) atts.put(Label.PROCEDURE_IMPLEMENTATION, PrimitiveExplainer.getInstance("compiled")); pool.put(invoker, true); return new ServerCallExplainer(getInvocation(), atts, context); }
233234235236237238239
PrimitiveExplainer.getInstance("compiled")); if (evaluator.isShared()) atts.put(Label.PROCEDURE_IMPLEMENTATION, PrimitiveExplainer.getInstance("shared")); pool.put(evaluator, true); return new ServerCallExplainer(getInvocation(), atts, context); }
99100101102103104105106107
@Override public CompoundExplainer getExplainer(ExplainContext context) { Attributes atts = new Attributes(); atts.put(Label.PROCEDURE_IMPLEMENTATION, PrimitiveExplainer.getInstance(loadablePlan.getClass().getName())); return new ServerCallExplainer(invocation, atts, context); } }; }