def put_timeseries(self, timeseries, starttime=None, endtime=None, channels=None, type=None, interval=None):
        """Implements put_timeseries

        Notes: Calls BinLogFactory.write_file in place of
            BinLogFactory.put_timeseries. This can result in a
            non-standard BinLog file, specifically one of longer than
            expected length.
        """
        BinLogFactory.write_file(self, self._stream, timeseries, channels)
Example #2
0
    def put_timeseries(self,
                       timeseries,
                       starttime=None,
                       endtime=None,
                       channels=None,
                       type=None,
                       interval=None):
        """Implements put_timeseries

        Notes: Calls BinLogFactory.write_file in place of
            BinLogFactory.put_timeseries. This can result in a
            non-standard BinLog file, specifically one of longer than
            expected length.
        """
        BinLogFactory.write_file(self, self._stream, timeseries, channels)
 def __init__(self, stream, **kwargs):
     BinLogFactory.__init__(self, **kwargs)
     self._stream = stream
Example #4
0
 def __init__(self, stream, **kwargs):
     BinLogFactory.__init__(self, **kwargs)
     self._stream = stream