Uses of Interface
io.joynr.jeeintegration.api.ServiceLocator.ServiceProxyBuilder
-
Packages that use ServiceLocator.ServiceProxyBuilder Package Description io.joynr.jeeintegration io.joynr.jeeintegration.api -
-
Uses of ServiceLocator.ServiceProxyBuilder in io.joynr.jeeintegration
Classes in io.joynr.jeeintegration that implement ServiceLocator.ServiceProxyBuilder Modifier and Type Class Description classJeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder<T>classJeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder<T>Methods in io.joynr.jeeintegration that return ServiceLocator.ServiceProxyBuilder Modifier and Type Method Description <I> ServiceLocator.ServiceProxyBuilder<I>JeeJoynrServiceLocator. builder(Class<I> serviceInterface, String... domains)ServiceLocator.ServiceProxyBuilder<CompletableFuture<CompletableFuture<T>>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. useFuture()ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. useFuture()ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withCallback(ProxyBuilder.ProxyCreatedCallback<CompletableFuture<T>> callback)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withCallback(ProxyBuilder.ProxyCreatedCallback<T> callback)ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withDiscoveryQos(DiscoveryQos discoveryQos)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withDiscoveryQos(DiscoveryQos discoveryQos)ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withGbids(String[] gbids)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withGbids(String[] gbids)ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withMessagingQos(MessagingQos messagingQos)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withMessagingQos(MessagingQos messagingQos)ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withTtl(long ttl)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withTtl(long ttl)ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>JeeJoynrServiceLocator.JeeJoynrServiceFutureProxyBuilder. withUseCase(String useCase)ServiceLocator.ServiceProxyBuilder<T>JeeJoynrServiceLocator.JeeJoynrServiceProxyBuilder. withUseCase(String useCase) -
Uses of ServiceLocator.ServiceProxyBuilder in io.joynr.jeeintegration.api
Methods in io.joynr.jeeintegration.api that return ServiceLocator.ServiceProxyBuilder Modifier and Type Method Description <I> ServiceLocator.ServiceProxyBuilder<I>ServiceLocator. builder(Class<I> serviceInterface, String... domains)Create aServiceLocator.ServiceProxyBuilderfor the given service interface and domains.ServiceLocator.ServiceProxyBuilder<CompletableFuture<T>>ServiceLocator.ServiceProxyBuilder. useFuture()If you want to have aCompletableFuturereturned which will complete when the proxy has been fully created and initialised successfully, then call this method before callingbuild().ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withCallback(ProxyBuilder.ProxyCreatedCallback<T> callback)Set the callback to use when creating the proxy.ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withDiscoveryQos(DiscoveryQos discoveryQos)Set the discovery quality-of-service to use when looking up the service which the proxy will talk to.ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withGbids(String[] gbids)Set the GBIDs to use when looking up the service which the proxy will talk to.ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withMessagingQos(MessagingQos messagingQos)Set the messaging quality-of-service to use when sending messages from the resulting proxy.ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withTtl(long ttl)Set the time to live for messages being sent from the resulting proxy.ServiceLocator.ServiceProxyBuilder<T>ServiceLocator.ServiceProxyBuilder. withUseCase(String useCase)Set the stateless async use case name use to find the relevantCallbackHandlerto use for processing stateless async replies resulting from requests sent from this proxy.
-