Package com.pinterest.secor.tools

Examples of com.pinterest.secor.tools.TestLogMessageProducer.start()


            String topic = commandLine.getOptionValue("topic");
            int messages = ((Number) commandLine.getParsedOptionValue("messages")).intValue();
            int producers = ((Number) commandLine.getParsedOptionValue("producers")).intValue();
            for (int i = 0; i < producers; ++i) {
                TestLogMessageProducer producer = new TestLogMessageProducer(topic, messages);
                producer.start();
            }
        } catch (Throwable t) {
            LOG.error("Log message producer failed", t);
            System.exit(1);
        }
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.