Commit c7013062 authored by Dmitry Lebedev's avatar Dmitry Lebedev Committed by oroulet

Adding historical data reading methods to SyncNode wrapper

parent 9e8dd5a5
......@@ -506,6 +506,22 @@ class SyncNode:
def get_child(self, path):
pass
@syncmethod
def read_raw_history(self, starttime=None, endtime=None, numvalues=0, return_bounds=True):
pass
@syncmethod
def history_read(self, details, continuation_point=None):
pass
@syncmethod
def read_event_history(self, starttime=None, endtime=None, numvalues=0, evtypes=ua.ObjectIds.BaseEventType):
pass
@syncmethod
def history_read_events(self, details):
pass
@syncmethod
def set_modelling_rule(self, mandatory: bool):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment