Uses of Interface
com._1c.g5.v8.dt.pm.ServiceBinder
Packages that use ServiceBinder
Package
Description
Implementations of Process Manager API classes.
Wrappers of processes and services.
Process Manager API.
-
Uses of ServiceBinder in com._1c.g5.v8.dt.internal.pm
Classes in com._1c.g5.v8.dt.internal.pm that implement ServiceBinder -
Uses of ServiceBinder in com._1c.g5.v8.dt.internal.pm.wrappers
Fields in com._1c.g5.v8.dt.internal.pm.wrappers declared as ServiceBinderModifier and TypeFieldDescriptionprotected final ServiceBinder<T>
AbstractServiceWrapper.serviceBinder
The service binder.Constructors in com._1c.g5.v8.dt.internal.pm.wrappers with parameters of type ServiceBinderModifierConstructorDescriptionAbstractServiceWrapper
(ServiceBinder<T> serviceBinder) Creates new instance with givenServiceBinder
.DefaultServiceWrapper
(ServiceBinder<T> serviceBinder) Inherits super constructor.SingletonServiceWrapper
(ServiceBinder<T> serviceBinder) Inherits super constructor. -
Uses of ServiceBinder in com._1c.g5.v8.dt.pm
Methods in com._1c.g5.v8.dt.pm that return ServiceBinderModifier and TypeMethodDescriptionServiceBinder.addAdditionalClasses
(Class<?>... additionalClasses) Adds all the given additional classes to this binder.ServiceBinder.addAdditionalClassesProvider
(IAdditionalClassesProvider additionalClassesProvider) Adds all the additional classes provided byadditionalClassesProvider
to this binder.ServiceBinder.addLibraries
(String... libraries) Adds all the given libraries to this binder.ServiceBinder.addLibrariesProvider
(ILibrariesProvider librariesProvider) Adds all the libraries provided by givenlibrariesProvider
.<T> ServiceBinder<T>
ProcessBinder.getServiceBinder
(Class<T> service) Returns new or existingservice binder
for given service and corresponding process.ServiceBinder.setSingleton
(boolean singleton) If value of the given parameter istrue
, only one implementation instance will be created within separate process and all the proxy instances of service (created byIProcessManager.getInstance(String, Class)
) will delegate all the method calls to that instance.