Class SynchronizeTimestamp
Represents an operator that creates a command message to set the value of the timestamp register in the Harp device to the current UTC time of the host.
public class SynchronizeTimestamp : Combinator<HarpMessage>
- Inheritance
-
SynchronizeTimestamp
- Inherited Members
Methods
Process<TSource>(IObservable<TSource>)
Creates an observable sequence of command messages to set the value of the timestamp register in the Harp device to the current UTC time of the host.
public override IObservable<HarpMessage> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence containing the notifications used for creating new command messages.
Returns
- IObservable<HarpMessage>
A sequence of HarpMessage objects representing the command to set the value of the timestamp register in the Harp device.
Type Parameters
TSource
The type of the elements in the
source
sequence.