-
Notifications
You must be signed in to change notification settings - Fork 81
Closed
Description
Lines 52 to 68 in 5dbcd1d
| public DataStream fromRocketmq(String topic, String groupName) { | |
| return fromRocketmq(topic, groupName, null, false); | |
| } | |
| public DataStream fromRocketmq(String topic, String groupName, boolean isJson) { | |
| return fromRocketmq(topic, groupName, null, isJson); | |
| } | |
| public DataStream fromRocketmq(String topic, String groupName, String tags, boolean isJson) { | |
| RocketMQSource rocketMQSource = new RocketMQSource(); | |
| rocketMQSource.setTopic(topic); | |
| rocketMQSource.setTags(tags); | |
| rocketMQSource.setGroupName(groupName); | |
| rocketMQSource.setJsonData(isJson); | |
| this.mainPipelineBuilder.setSource(rocketMQSource); | |
| return new DataStream(this.mainPipelineBuilder, this.otherPipelineBuilders, null); | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels