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

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


        throw new StreamDefinitionException(config, sourceChannel.getStartPos(),
            NAMED_CHANNELS_UNSUPPORTED_HERE);
      }
    }

    SinkChannelNode sinkChannel = stream.getSinkChannelNode();
    if (sinkChannel != null) {
      if (parsingContext.supportsNamedChannels()) {
        builders.getFirst().setSinkChannelName(sinkChannel.getChannelName());
      }
      else {
        throw new StreamDefinitionException(config, sinkChannel.getChannelNode().getStartPos(),
            NAMED_CHANNELS_UNSUPPORTED_HERE);
      }
    }

    // Now that we know about source and sink channel names,
View Full Code Here

TOP

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

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.