summaryrefslogtreecommitdiff
path: root/plugins/informer/interface.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-04-30 13:41:18 +0300
committerValery Piashchynski <[email protected]>2021-04-30 13:41:18 +0300
commit5f451ffbba6b9758d61ba70ddd112a8e1570045a (patch)
treeaafd7e6fe00dd6b53ab768fcf45535384f4c9df7 /plugins/informer/interface.go
parentc9770668debb203f121d8a5f08a3e3c19f4535ea (diff)
- Update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/informer/interface.go')
-rw-r--r--plugins/informer/interface.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/informer/interface.go b/plugins/informer/interface.go
index 08eda00b..316c7bc1 100644
--- a/plugins/informer/interface.go
+++ b/plugins/informer/interface.go
@@ -16,6 +16,6 @@ type Informer interface {
// Availabler interface should be implemented by every plugin which wish to report to the PHP worker that it available in the RR runtime
type Availabler interface {
- // Available returns true if the particular plugin available in the RR2 runtime
- Available() bool
+ // Available method needed to collect all plugins which are available in the runtime.
+ Available()
}