You could make a provider method

@Provides
@Named("HandlerGroup1") Handler[] getHandlerGroup1() {
    ...
}

for each handler group you want to configure.

On Monday, 10 February 2014 12:46:25 UTC-5, Denys Zakhozhyy wrote:
>
>
> After spending  a couple of hours reading I am quite confused now and not 
> sure how to do the following properly.
>
> I have a Coordinator class as
>
> public class Coordinator {
>
>     @Inject
>     public Coordinator(@Named("HandlersGroup1") Handler[] handlers1, 
> @Named("HandlersGroup2") Handler[] handlers2) {
>          ...
>     }
>
> } 
>
>
>
> Implementations within each handler group are the same, but different from 
> another group.
> Coordinator should not decide on how many handlers are in each group.
>
> How should I properly bind this with Guice? 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"google-guice" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-guice.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to