NTP Analyzer  0.8.2
Analyze the operation of time servers
Ntp.Analyzer.Objects.HostReading Class Reference
Inheritance diagram for Ntp.Analyzer.Objects.HostReading:
Collaboration diagram for Ntp.Analyzer.Objects.HostReading:

Public Member Functions

 HostReading (int id, DateTime time, int zone, Host host, Peer peer, double offset, double jitter, double frequency, double stability)
 
 HostReading (Host host, Peer peer, ReadingBulk bulk, double offset, double jitter, double frequency, double stability)
 
 HostReading (Host host, Peer peer, ReadingBulk bulk, double offset, double jitter)
 
- Public Member Functions inherited from Ntp.Analyzer.Objects.PersistentObject
override bool Equals (object obj)
 
override int GetHashCode ()
 
void SetId (int id)
 Sets the identifier after the object have been stored in persistent storage. More...
 
override string ToString ()
 Returns a string that represents the current PersistentObject. More...
 

Properties

double Frequency [get]
 
double Stability [get]
 
- Properties inherited from Ntp.Analyzer.Objects.DispersionReading
double Jitter [get]
 
double Offset [get]
 
Peer Peer [get]
 
- Properties inherited from Ntp.Analyzer.Objects.Reading
Host Host [get]
 
DateTime LocalTime [get]
 
DateTime Time [get]
 
int UtcOffset [get]
 
DateTime UtcTime [get]
 
- Properties inherited from Ntp.Analyzer.Objects.PersistentObject
int Id [get, private set]
 Gets the identifier. More...
 
bool NewObject [get, protected set]
 Gets a value indicating whether this PersistentObject is a new object which does not yet exists in the peristing storage (database etc). More...
 

Additional Inherited Members

- Public Attributes inherited from Ntp.Analyzer.Objects.Reading
DateTime RoundedLocalTime
 
DateTime RoundedUtcTime
 
- Protected Member Functions inherited from Ntp.Analyzer.Objects.DispersionReading
 DispersionReading (int id, DateTime time, int zone, Host host, Peer peer, double offset, double jitter)
 
 DispersionReading (Host host, Peer peer, ReadingBulk bulk, double offset, double jitter)
 
- Protected Member Functions inherited from Ntp.Analyzer.Objects.Reading
 Reading (int id, DateTime time, int zone, Host host)
 
 Reading (Host host, ReadingBulk bulk)
 
- Protected Member Functions inherited from Ntp.Analyzer.Objects.PersistentObject
 PersistentObject (int id)
 Initializes a new instance of the PersistentObject class. More...
 
 PersistentObject ()
 Initializes a new instance of the PersistentObject class. More...
 

Detailed Description

Definition at line 26 of file HostReading.cs.

Constructor & Destructor Documentation

Ntp.Analyzer.Objects.HostReading.HostReading ( int  id,
DateTime  time,
int  zone,
Host  host,
Peer  peer,
double  offset,
double  jitter,
double  frequency,
double  stability 
)
inline

Definition at line 28 of file HostReading.cs.

39  : base(id, time, zone, host, peer, offset, jitter)
40  {
41  Frequency = frequency;
42  Stability = stability;
43  }
Ntp.Analyzer.Objects.HostReading.HostReading ( Host  host,
Peer  peer,
ReadingBulk  bulk,
double  offset,
double  jitter,
double  frequency,
double  stability 
)
inline

Definition at line 45 of file HostReading.cs.

54  : base(host, peer, bulk, offset, jitter)
55  {
56  Frequency = frequency;
57  Stability = stability;
58  }
Ntp.Analyzer.Objects.HostReading.HostReading ( Host  host,
Peer  peer,
ReadingBulk  bulk,
double  offset,
double  jitter 
)
inline

Definition at line 60 of file HostReading.cs.

67  : base(host, peer, bulk, offset, jitter)
68  {
69  Frequency = 0;
70  Stability = 0;
71  }

Property Documentation

double Ntp.Analyzer.Objects.HostReading.Frequency
get
double Ntp.Analyzer.Objects.HostReading.Stability
get

The documentation for this class was generated from the following file: