|
|
|
|
|
|
|
|
|
Class: __UIBindingManager
Class Overview
This class manages client-server UI component bindings
It contains all the __UIBinding instances created due to component rendering
|
Methods
|
Method Summary
| void |
bind() |
Binds a server end-point to a client end-point |
| void |
bindFromClientToServer() |
Binds a server end-point to a client end-point (internally, it creates a __UIBinding instance), allowing the synchronization from client to server but not the oposite way It also set the bound direction to __IEndPoing::BIND_DIRECTION_C2S to both end-points |
| void |
bindFromServerToClient() |
Binds a server end-point to a client end-point (internally, it creates a __UIBinding instance), allowing the synchronization from server to client but not the oposite way It also set the bound direction to __IEndPoing::BIND_DIRECTION_S2C to both end-points |
Methods
Binds a server end-point to a client end-point
Parameters:
Binds a server end-point to a client end-point (internally, it creates a __UIBinding instance), allowing the synchronization from client to server but not the oposite way It also set the bound direction to __IEndPoing::BIND_DIRECTION_C2S to both end-points
Parameters:
Binds a server end-point to a client end-point (internally, it creates a __UIBinding instance), allowing the synchronization from server to client but not the oposite way It also set the bound direction to __IEndPoing::BIND_DIRECTION_S2C to both end-points
Parameters:
Gets a __UIBinding corresponding to a given identifier
Parameters:
| Type | Name | Description |
|
string |
$id |
The identifier |
bool hasUIBinding(
string
$id
)
|
|
Checks if a __UIBinding is already registered
Parameters:
| Type | Name | Description |
|
string |
$id |
The __UIBinding identifier |
Register a __UIBinding instance
Parameters:
| Type | Name | Description |
|
__UIBinding |
$ui_binding |
The __UIBinding to register to |
|
|
|
|
|
|
|
|
|