dnp3
0.9.0
|
General handler that will receive all values read from the outstation. More...
Public Member Functions | |
void | BeginFragment (ReadType readType, ResponseHeader header) |
Marks the beginning of a fragment More... | |
void | EndFragment (ReadType readType, ResponseHeader header) |
Marks the end of a fragment More... | |
void | HandleBinary (HeaderInfo info, System.Collections.Generic.ICollection< Binary > it) |
Handle binary input data More... | |
void | HandleDoubleBitBinary (HeaderInfo info, System.Collections.Generic.ICollection< DoubleBitBinary > it) |
Handle double-bit binary input data More... | |
void | HandleBinaryOutputStatus (HeaderInfo info, System.Collections.Generic.ICollection< BinaryOutputStatus > it) |
Handle binary output status data More... | |
void | HandleCounter (HeaderInfo info, System.Collections.Generic.ICollection< Counter > it) |
Handle counter data More... | |
void | HandleFrozenCounter (HeaderInfo info, System.Collections.Generic.ICollection< FrozenCounter > it) |
Handle frozen counter input data More... | |
void | HandleAnalog (HeaderInfo info, System.Collections.Generic.ICollection< Analog > it) |
Handle analog input data More... | |
void | HandleAnalogOutputStatus (HeaderInfo info, System.Collections.Generic.ICollection< AnalogOutputStatus > it) |
Handle analog output status data More... | |
void | HandleOctetString (HeaderInfo info, System.Collections.Generic.ICollection< OctetString > it) |
Handle octet string data More... | |
General handler that will receive all values read from the outstation.
void dnp3.IReadHandler.BeginFragment | ( | ReadType | readType, |
ResponseHeader | header | ||
) |
Marks the beginning of a fragment
readType | Describes what triggered the read event |
header | Header of the fragment |
void dnp3.IReadHandler.EndFragment | ( | ReadType | readType, |
ResponseHeader | header | ||
) |
Marks the end of a fragment
readType | Describes what triggered the read event |
header | Header of the fragment |
void dnp3.IReadHandler.HandleAnalog | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< Analog > | it | ||
) |
Handle analog input data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleAnalogOutputStatus | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< AnalogOutputStatus > | it | ||
) |
Handle analog output status data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleBinary | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< Binary > | it | ||
) |
Handle binary input data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleBinaryOutputStatus | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< BinaryOutputStatus > | it | ||
) |
Handle binary output status data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleCounter | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< Counter > | it | ||
) |
Handle counter data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleDoubleBitBinary | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< DoubleBitBinary > | it | ||
) |
Handle double-bit binary input data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleFrozenCounter | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< FrozenCounter > | it | ||
) |
Handle frozen counter input data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |
void dnp3.IReadHandler.HandleOctetString | ( | HeaderInfo | info, |
System.Collections.Generic.ICollection< OctetString > | it | ||
) |
Handle octet string data
info | Group/variation and qualifier information |
it | Iterator of point values in the response. This iterator is valid only within this call. Do not copy it. |