Interface IMultiplexDistributor
- 
- All Known Implementing Classes:
- SequentialMultiplexDistributor,- SimpleMultiplexDistributor
 
 public interface IMultiplexDistributorInterface for multiplex call distributor. It is fed with: - the services found one by one (addService) - when the search has finished (serviceSearchFinished) It determines: - which services are called - with which arguments - when finished
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddService(IService service)Add a new service.IIntermediateFuture<java.lang.Object>init(java.lang.reflect.Method method, java.lang.Object[] args, IFilter<Tuple2<IService,java.lang.Object[]>> filter, IParameterConverter conv)Init the call distributor.voidserviceSearchFinished()Search for services has finished.
 
- 
- 
- 
Method Detail- 
initIIntermediateFuture<java.lang.Object> init(java.lang.reflect.Method method, java.lang.Object[] args, IFilter<Tuple2<IService,java.lang.Object[]>> filter, IParameterConverter conv) Init the call distributor.
 - 
addServicevoid addService(IService service) Add a new service.- Parameters:
- service- The service.
 
 - 
serviceSearchFinishedvoid serviceSearchFinished() Search for services has finished.
 
- 
 
-