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 toIProcessManager#bind(String, Class, Class, ILibrariesProvider, IClassPathProvider, boolean)
method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]
getLibraries()
Returns a list of libraries to load for native methods execution.
-
-
-
Method Detail
-
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
)
-
-