/* * Copyright (C) 2016 The Dagger Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dagger.functional.producers.multibindings; import com.google.common.util.concurrent.ListenableFuture; import dagger.functional.producers.ExecutorModule; import dagger.functional.producers.multibindings.Qualifiers.EmptyButDeclaredInModule; import dagger.functional.producers.multibindings.Qualifiers.EmptyButDeclaredInModuleAndProducerModule; import dagger.functional.producers.multibindings.Qualifiers.ObjCount; import dagger.functional.producers.multibindings.Qualifiers.OnlyProvisionMultibindings; import dagger.functional.producers.multibindings.Qualifiers.PossiblyThrowingMap; import dagger.functional.producers.multibindings.Qualifiers.PossiblyThrowingSet; import dagger.producers.Produced; import dagger.producers.Producer; import dagger.producers.ProductionComponent; import java.util.Map; import java.util.Set; @ProductionComponent( modules = {ExecutorModule.class, MultibindingProducerModule.class, MultibindingModule.class} ) interface MultibindingComponent { ListenableFuture> strs(); ListenableFuture strCount(); ListenableFuture>> successfulSet(); @PossiblyThrowingSet ListenableFuture>> possiblyThrowingSet(); ListenableFuture> map(); ListenableFuture>> mapOfProducer(); ListenableFuture>> mapOfProduced(); @PossiblyThrowingMap ListenableFuture> possiblyThrowingMap(); @PossiblyThrowingMap ListenableFuture>> possiblyThrowingMapOfProducer(); @PossiblyThrowingMap ListenableFuture>> possiblyThrowingMapOfProduced(); ListenableFuture> objs(); ListenableFuture>> producedObjs(); ListenableFuture> objMap(); ListenableFuture>> objMapOfProduced(); ListenableFuture>> objMapOfProducer(); @ObjCount ListenableFuture objCount(); @EmptyButDeclaredInModuleAndProducerModule ListenableFuture> emptyButDeclaredInModuleAndProducerModule(); @EmptyButDeclaredInModule ListenableFuture> emptyButDeclaredInModule(); @OnlyProvisionMultibindings ListenableFuture> onlyProvisionMultibindings(); }