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

Public Member Functions

 PeerReading (int id, DateTime time, int zone, Host host, Peer peer, int last, int reach, double delay, double offset, double jitter)
 
 PeerReading (Host host, Peer peer, ReadingBulk bulk, AssociationEntry entry)
 
- 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 Delay [get]
 
int LastPoll [get]
 
int Reach [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 PeerReading.cs.

Constructor & Destructor Documentation

Ntp.Analyzer.Objects.PeerReading.PeerReading ( int  id,
DateTime  time,
int  zone,
Host  host,
Peer  peer,
int  last,
int  reach,
double  delay,
double  offset,
double  jitter 
)
inline

Definition at line 28 of file PeerReading.cs.

40  : base(id, time, zone, host, peer, offset, jitter)
41  {
42  Reach = reach;
43  LastPoll = last;
44  Delay = delay;
45  }
Ntp.Analyzer.Objects.PeerReading.PeerReading ( Host  host,
Peer  peer,
ReadingBulk  bulk,
AssociationEntry  entry 
)
inline

Definition at line 47 of file PeerReading.cs.

References Ntp.Analyzer.Objects.AssociationEntry.Delay, Ntp.Analyzer.Objects.AssociationEntry.LastPoll, and Ntp.Analyzer.Objects.AssociationEntry.Reach.

52  : base(host, peer, bulk, entry.Offset, entry.Jitter)
53  {
54  Reach = entry.Reach;
55  LastPoll = entry.LastPoll;
56  Delay = entry.Delay;
57  }

Property Documentation

double Ntp.Analyzer.Objects.PeerReading.Delay
get
int Ntp.Analyzer.Objects.PeerReading.LastPoll
get
int Ntp.Analyzer.Objects.PeerReading.Reach
get

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