AttributesMutatorSetCacheWriter Method (String, String) |
Sets the library path for the library that will be invoked for the writer of the region.
The previous cache writer will be replaced with a writer created
using the factory function provided in the given library.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic void SetCacheWriter(
string libPath,
string factoryFunctionName
)
Public Sub SetCacheWriter (
libPath As String,
factoryFunctionName As String
)
public:
void SetCacheWriter(
String^ libPath,
String^ factoryFunctionName
)
member SetCacheWriter :
libPath : string *
factoryFunctionName : string -> unit
Parameters
- libPath
- Type: SystemString
library pathname containing the factory function.
- factoryFunctionName
- Type: SystemString
Name of factory function that creates a CacheWriter
for a native library, or the name of the method in the form
{Namespace}.{Class Name}.{Method Name} that creates an
ICacheWriter for a managed library.
See Also