Examples of enter()


Examples of client.net.sf.saxon.ce.lib.TraceListener.enter()

    public TailCall processLeavingTail(XPathContext context) throws XPathException {
        Controller controller = context.getController();
        assert controller != null;
        if (LogConfiguration.loggingIsEnabled() && LogController.traceIsEnabled()) {
          TraceListener listener = LogController.getTraceListener();
        listener.enter(getInstructionInfo(), context);
        child.process(context);
        listener.leave(getInstructionInfo());
       
      } else {
        child.process(context);
View Full Code Here

Examples of client.net.sf.saxon.ce.lib.TraceListener.enter()

        info.setConstructType(Location.TRACE_CALL);
        info.setSourceLocator(this.getSourceLocator());
        info.setProperty("label", label);
        info.setProperty("value", val);
        TraceListener listener = LogController.getTraceListener();
        listener.enter(info, context);
        listener.leave(info);
    }

    public static void traceItem(/*@Nullable*/ Item val, String label) {
        if (val==null) {
View Full Code Here

Examples of com.espertech.esper.epl.agg.BigDecimalAvgAggregator.enter()

            Number num = (Number) next;
            if (num == null) {
                continue;
            }
            agg.enter(num);
        }

        return agg.getValue();
    }
}
View Full Code Here

Examples of com.espertech.esper.epl.agg.aggregator.AggregatorAvgBigDecimal.enter()

            Number num = (Number) next;
            if (num == null) {
                continue;
            }
            agg.enter(num);
        }

        return agg.getValue();
    }
}
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.bpmn.behavior.UserTaskBehavior.enter()

      if (recoverToTask.getTaskGroup() != null) {

        if (taskCommand != null) {

          userTask.enter(executionContext);

        }

        try {
          saveProcessInstance(commandContext);
View Full Code Here

Examples of com.google.common.util.concurrent.Monitor.enter()

    public void lock(Object name) {
        Monitor lock;
        synchronized (stringLocks) {
            lock = stringLocks.getUnchecked(name);
        }
        lock.enter();
    }

    public void unlock(Object name) {
        Monitor lock;
        synchronized (stringLocks) {
View Full Code Here

Examples of com.jcloisterzone.game.phase.Phase.enter()

        while (!phase.isEntered()) {
            if (!Iterables.contains(ALLOWED_IN_PHASE_LOOP, phase.getClass())) {
                return true;
            }
            phase.setEntered(true);
            phase.enter();
            phase = game.getPhase();
            game.flushEventQueue();
        }
        game.flushEventQueue();
        return false;
View Full Code Here

Examples of com.springsource.insight.collection.OperationCollector.enter()

    @Override
    public void run() {
        OperationCollector collector = getCollector();
        Operation op = createRootOperation(Thread.currentThread());
        collector.enter(op);
        try {
            Runnable command = getRunner();
            command.run();
            collector.exitNormal();
        } catch (RuntimeException e) {
View Full Code Here

Examples of com.springsource.insight.intercept.trace.FrameBuilder.enter()

    @Test
    public void locateEndPointNoGrails() {
        FrameBuilder b = new SimpleFrameBuilder();
        Operation httpOp = new Operation().type(OperationType.HTTP);
        b.enter(httpOp);
        b.enter(new Operation());
        Frame simpleFrame = b.exit();
        assertNotNull("No simple frame", simpleFrame);
        Frame httpFrame = b.exit();
        Trace trace = Trace.newInstance(app, TraceId.valueOf("0"), httpFrame);
View Full Code Here

Examples of com.springsource.insight.intercept.trace.SimpleFrameBuilder.enter()

    private Trace createValidTrace(String param) {
        SimpleFrameBuilder builder = new SimpleFrameBuilder();
        Operation op = createOperation(param);

        builder.enter(op);

        Frame frame = builder.exit();
        return Trace.newInstance(ApplicationName.valueOf("app"), TraceId.valueOf("0"), frame);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.