Package org.erlide.runtime.api

Examples of org.erlide.runtime.api.ErlRuntimeReporter


        @Override
        public void terminated(final State from) {
            ErlLogger.debug(String.format("Node %s terminated", getNodeName()));
            dispose();
            final ErlRuntimeReporter reporter = new ErlRuntimeReporter(data.isInternal(),
                    data.isReportErrors());
            if (getExitCode() > 0) {
                reporter.reportRuntimeDown(getNodeName());
            }
        }
View Full Code Here


            return;
        }
        ErlLogger.warn(String.format("Node %s crashed, exit code: %d.", getName(),
                exitCode));

        final ErlRuntimeReporter reporter = new ErlRuntimeReporter(data.isInternal(),
                data.isReportErrors());
        reporter.reportRuntimeDown(getName());
        try {
            if (data.isReportErrors()) {
                reporter.createFileReport(getName(), exitCode);
            }
        } catch (final Exception t) {
            ErlLogger.warn(t);
        }
    }
View Full Code Here

TOP

Related Classes of org.erlide.runtime.api.ErlRuntimeReporter

Copyright © 2018 www.massapicom. 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.