Open MatteoJoliveau opened 6 years ago
As of 0.7.0 plugins are singletons and if multiple ones have the same supertype only the first appearing in the registry can be retrieved.
final Callable plugin = manager.getPlugin(Callable.class);
Maybe we have 50 plugins implementing Callable. PlugFace should be able to return them all.
Callable
final Collection<Callable> plugins = manager.getPlugins(Callable.class);
Hi @MatteoJoliveau how far is this feature.
As of 0.7.0 plugins are singletons and if multiple ones have the same supertype only the first appearing in the registry can be retrieved.
Maybe we have 50 plugins implementing
Callable
.PlugFace should be able to return them all.