Package com.crashnote.core.report.impl.processor.impl

Examples of com.crashnote.core.report.impl.processor.impl.AsyncProcessor


    protected <C extends CrashConfig> Processor createProcessor(final C config) {
        final SyncProcessor syncPrc = new SyncProcessor(config);
        if (config.isSync())
            return syncPrc;
        else
            return new AsyncProcessor(config, syncPrc);
    }
View Full Code Here

TOP

Related Classes of com.crashnote.core.report.impl.processor.impl.AsyncProcessor

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.