Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/821#discussion_r142122148
--- Diff:
core/src/main/java/org/apache/brooklyn/core/entity/EntityInternal.java ---
@@ -189,7 +189,7 @@
void remove(AttributeSensor<?> attribute);
}
- public interface FeedSupport {
+ public interface FeedSupport extends Iterable<Feed> {
--- End diff --
Adding this gives consistency with entity's `enrichers()` and `policies()`
which both return something that implements `Iterable<T>`. I therefore think
it's a good idea.
---