This message was deleted.
# plugin-development
s
This message was deleted.
a
Try this:
Copy code
theContainer
  .matching { it.name == "foo" }
  .configureEach { ... }
e
(that makes everything created eagerly, which doesn't matter for all containers but might be significant for some)
v
It does not
We learned that if the result of
matching
is used to call
configureEach
, it remains lazy. Only if you iterate the result of
matching
like when giving it to
dependsOn
, all elements get eagerly realized.
i
Thanks!