Package org.springframework.xd.dirt.stream.dsl

Examples of org.springframework.xd.dirt.stream.dsl.SourceChannelNode


        }
      }
      builders.add(builder);
    }

    SourceChannelNode sourceChannel = stream.getSourceChannelNode();
    if (sourceChannel != null) {
      if (parsingContext.supportsNamedChannels()) {
        builders.getLast().setSourceChannelName(sourceChannel.getChannelName());
      }
      else {
        throw new StreamDefinitionException(config, sourceChannel.getStartPos(),
            NAMED_CHANNELS_UNSUPPORTED_HERE);
      }
    }

    SinkChannelNode sinkChannel = stream.getSinkChannelNode();
View Full Code Here

TOP

Related Classes of org.springframework.xd.dirt.stream.dsl.SourceChannelNode

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.