Examples of SinkChannelNode


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
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.