Package org.fluentd.logger.errorhandler

Examples of org.fluentd.logger.errorhandler.ErrorHandler


        });
        threadManager.submit(fluentd1);

        // start a logger
        final FluentLogger logger = FluentLogger.getLogger("testtag", host, port);
        final ErrorHandler errorHandler = new ErrorHandler() {
            @Override
            public void handleNetworkError(IOException ex) {
                lastError.set(ex);
            }
        };
View Full Code Here

TOP

Related Classes of org.fluentd.logger.errorhandler.ErrorHandler

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.