Intercept get operation before returning value.
Namespace: Hazelcast.MapAssembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.6.4.0
Object InterceptGet(
Object value
)
Function InterceptGet (
value As Object
) As Object
Object^ InterceptGet(
Object^ value
)
abstract InterceptGet :
value : Object -> Object
Parameters
- value
- Type: SystemObject
the original value to be returned as the result of get(..) operation
Return Value
Type:
Objectthe new value that will be returned by get(..) operation
Intercept get operation before returning value.
Return another object to change the return value of get(..)
Returning null will cause the get(..) operation return original value, namely return null if you do not want to
change anything.
Reference