JMap.Event.Server.activate
Activate the listener.
If the listener is already active, do nothing.
If the listener is inactive, it will be reactivated and will be called again ...
// activate the listener "my-server-listener" JMap.Event.Server.activate("my-server-listener")
The listener id
JMap.Event.Server.deactivate
Deactivate the listener.
If the listener id doesn't exists or if the listener is already inactive, do nothing.
If the listener is active, it will be deactivated and will be ignored ...
// deactivate the listener "my-server-listener" JMap.Event.Server.deactivate("my-server-listener")
JMap.Event.Server.remove
Remove the listener.
If the listener doesn't exist, do nothing.
Remove the listener from JMap NG Core library. The listener is deleted and never called again after that.
// remove the listener "my-server-listener" JMap.Event.Server.remove("my-server-listener")
JMap.Event.Server.activate
Activate the listener.
If the listener is already active, do nothing.
If the listener is inactive, it will be reactivated and will be called again ...
// activate the listener "my-server-listener" JMap.Event.Server.activate("my-server-listener")