-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add transformer for TIS adapter in reltine flink module
- Loading branch information
1 parent
6836344
commit ab5fab8
Showing
18 changed files
with
161 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ | |
|
||
package com.qlangtech.plugins.incr.flink.chunjun.dameng.source; | ||
|
||
import com.qlangtech.tis.extension.TISExtension; | ||
import com.qlangtech.tis.plugins.incr.flink.chunjun.source.ChunjunSourceFactory; | ||
import com.qlangtech.tis.async.message.client.consumer.IFlinkColCreator; | ||
import com.qlangtech.tis.async.message.client.consumer.IMQListener; | ||
import com.qlangtech.tis.plugin.IEndTypeGetter; | ||
import com.qlangtech.tis.plugins.incr.flink.chunjun.source.ChunjunSourceFactory; | ||
|
||
/** | ||
* @author: 百岁([email protected]) | ||
|
@@ -33,7 +33,12 @@ public IMQListener create() { | |
return new DamengSourceFunction(this); | ||
} | ||
|
||
// @TISExtension | ||
@Override | ||
public <FlinkColType> IFlinkColCreator<FlinkColType> createFlinkColCreator() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
// @TISExtension | ||
public static class DftDesc extends BaseChunjunDescriptor { | ||
@Override | ||
public IEndTypeGetter.EndType getEndType() { | ||
|
Oops, something went wrong.