RegionFactorySetPartitionResolver Method (String, String) |
Sets the library path for the library that will be invoked for the partition resolver of the region.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic RegionFactory SetPartitionResolver(
string libPath,
string factoryFunctionName
)
Public Function SetPartitionResolver (
libPath As String,
factoryFunctionName As String
) As RegionFactory
public:
RegionFactory^ SetPartitionResolver(
String^ libPath,
String^ factoryFunctionName
)
member SetPartitionResolver :
libPath : string *
factoryFunctionName : string -> RegionFactory
Parameters
- libPath
- Type: SystemString
library pathname containing the factory function.
- factoryFunctionName
- Type: SystemString
Name of factory function that creates a PartitionResolver
for a native library, or the name of the method in the form
{Namespace}.{Class Name}.{Method Name} that creates an
IPartitionResolver for a managed library.
Return Value
Type:
RegionFactorythe instance of RegionFactory
See Also