Package org.springframework.xd.integration.reactor.syslog

Examples of org.springframework.xd.integration.reactor.syslog.SyslogInboundChannelAdapter


    }


    @Bean
    public SyslogInboundChannelAdapter syslogInboundChannelAdapter(Environment env, DirectChannel output) {
      SyslogInboundChannelAdapter sica = new SyslogInboundChannelAdapter(env);
      sica.setOutputChannel(output);
      sica.setTransport(transport);
      return sica;
    }
View Full Code Here

TOP

Related Classes of org.springframework.xd.integration.reactor.syslog.SyslogInboundChannelAdapter

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.