Package com._1c.g5.v8.dt.pm
Interface ILibrariesProvider
public interface ILibrariesProvider
Provides method providing native libraries list to be loaded for executing native methods of service implementation within a separate process
It could be required that some libraries must be loaded for invoking native methods of
some service implementation within a separate process. In this case implement this interface and return it's instance
by IImplementationProvider#getLibrariesProvider()
or just pust this interface implementation to
IProcessManager#bind(String, Class, Class, ILibrariesProvider, IClassPathProvider, boolean)
method.
-
Method Summary
Modifier and TypeMethodDescriptionString[]
Returns a list of libraries to load for native methods execution.
-
Method Details
-
getLibraries
String[] getLibraries()Returns a list of libraries to load for native methods execution.
- Returns:
- a list of libraries to load for native methods execution (not
null
)
-