unregister_point
unregister_point — stops echo and exception message sending.
unregister_point (symbol)
symbolThe point to unregister.
This function causes the DataHub instance to immediately stop sending echo and exception messages for the named point. It is possible that exceptions and echos which are queued to the task will arrive after this function is called, but the DataHub instance will not generate any new messages.
Gamma>register_all_points(nil,t);tGamma>b;55Gamma>unregister_point(#b);tGamma>write_point(#b,33);tGamma>write_point(#c,77);tGamma>next_event();nilGamma>b;55Gamma>c;77Gamma>