Package org.apache.camel.component.splunk.support

Examples of org.apache.camel.component.splunk.support.TcpDataWriter


    private void createWriter(ProducerType producerType) {
        switch (producerType) {
        case TCP: {
            LOG.debug("Creating TcpDataWriter");
            dataWriter = new TcpDataWriter(endpoint, buildSplunkArgs());
            ((TcpDataWriter)dataWriter).setPort(endpoint.getConfiguration().getTcpReceiverPort());
            LOG.debug("TcpDataWriter created for endpoint {}", endpoint);
            break;
        }
        case SUBMIT: {
View Full Code Here

TOP

Related Classes of org.apache.camel.component.splunk.support.TcpDataWriter

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.