summaryrefslogtreecommitdiff
path: root/plugins/channel/interface.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-05-29 11:27:49 +0300
committerValery Piashchynski <[email protected]>2021-05-29 11:27:49 +0300
commit09b982813f8825f776abf20fb16c6085439ca4ba (patch)
tree1c4593bdc42503616b06f32bb6ee676cca38515a /plugins/channel/interface.go
parentfcda08498e8f914bbd0798da898818cd5d0e4348 (diff)
- Update channel plugin interfaces
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/channel/interface.go')
-rw-r--r--plugins/channel/interface.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/channel/interface.go b/plugins/channel/interface.go
index 9a405e89..50fc9c96 100644
--- a/plugins/channel/interface.go
+++ b/plugins/channel/interface.go
@@ -3,6 +3,6 @@ package channel
// Hub used as a channel between two or more plugins
// this is not a PUBLIC plugin, API might be changed at any moment
type Hub interface {
- SendCh() chan interface{}
- ReceiveCh() chan interface{}
+ FromWorker() chan interface{}
+ ToWorker() chan interface{}
}