Package com.attivio.sdk.server.global
Interface VariableListener
-
@Deprecated public interface VariableListener
Deprecated.This API should no longer be used and is scheduled for removal in a future releaseA callback interface to let users know when aGlobalVariable
's value has changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
changed(java.lang.String variableName, java.lang.String value)
Deprecated.Called when aGlobalVariable
's value has changed.
-
-
-
Method Detail
-
changed
void changed(java.lang.String variableName, java.lang.String value)
Deprecated.Called when aGlobalVariable
's value has changed.- Parameters:
variableName
- the name of theGlobalVariable
.value
- the new value of theGlobalVariable
.- See Also:
GlobalVariable.listen(VariableListener)
-
-