-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: init more components interface
- Loading branch information
1 parent
1395d7a
commit fb6dcd4
Showing
13 changed files
with
183 additions
and
417 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
4 changes: 4 additions & 0 deletions
4
sdk-component/src/main/java/group/rxcloud/capa/component/bindings/InputBinding.java
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package group.rxcloud.capa.component.bindings; | ||
|
||
public abstract class InputBinding { | ||
} |
4 changes: 4 additions & 0 deletions
4
sdk-component/src/main/java/group/rxcloud/capa/component/bindings/OutputBinding.java
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package group.rxcloud.capa.component.bindings; | ||
|
||
public abstract class OutputBinding { | ||
} |
4 changes: 4 additions & 0 deletions
4
sdk-component/src/main/java/group/rxcloud/capa/component/pubsub/PubSub.java
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package group.rxcloud.capa.component.pubsub; | ||
|
||
public abstract class PubSub { | ||
} |
4 changes: 4 additions & 0 deletions
4
sdk-component/src/main/java/group/rxcloud/capa/component/state/Store.java
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package group.rxcloud.capa.component.state; | ||
|
||
public abstract class Store { | ||
} |
Oops, something went wrong.