Binding Activator
A binding activator is a special reference that points to a server context variable, a server context event, or a field of a server context variable. A change of the above variable or an occurrence of the above event trigger this binding's processing.
![]() | When a binding activator is not specified, references from the binding expression work as activators. In this case, avoid using binding targets in binding expressions. Because the result of a binding expression is written to the binding target, this can cause an eternal loop of updates. |
Here is a list of supported activator syntax variations:
1. Server Context Variable
context:variable
This activator will trigger a binding once the variable
of the server context named context
is changed.
![]() | Example: This activator will run upon the change of the |
![]() | Only variables whose changes produce updated events will cause a binding to be activated. |
2. Server Context Event
context:event@
This activator will trigger a binding once event named event
occurs in server context named context
.
![]() | Example: This activator will run upon the occurrence of the |
Was this page helpful?