8#include "Arp/System/Rsc/Services/IRscSerializable.hpp"
9#include "Arp/System/Rsc/Services/RscReader.hpp"
10#include "Arp/System/Rsc/Services/RscString.hxx"
11#include "Arp/System/Rsc/Services/RscWriter.hpp"
15namespace Arp {
namespace Services {
namespace NotificationLogger {
namespace Services
111 writer.
Write(this->IdMin);
112 writer.
Write(this->IdMax);
113 writer.
Write(this->NotificationNamePattern);
114 writer.
Write(this->SenderNamePattern);
115 writer.
Write(this->TimestampMin);
116 writer.
Write(this->TimestampMax);
117 writer.
Write(this->SeverityMin);
118 writer.
Write(this->SeverityMax);
119 writer.
Write(this->RedundancyTypePattern);
120 writer.
Write(this->RedundancyRolePattern);
125 reader.
Read(this->IdMin);
126 reader.
Read(this->IdMax);
127 reader.
Read(this->NotificationNamePattern);
128 reader.
Read(this->SenderNamePattern);
129 reader.
Read(this->TimestampMin);
130 reader.
Read(this->TimestampMax);
131 reader.
Read(this->SeverityMin);
132 reader.
Read(this->SeverityMax);
133 reader.
Read(this->RedundancyTypePattern);
134 reader.
Read(this->RedundancyRolePattern);
137 static constexpr size_t GetFieldCount(
void)
Filter specification to match notification on query or delete
Definition: NotificationFilter2.hpp:25
RscString< 32 > SeverityMax
Maximum matching Severity
Definition: NotificationFilter2.hpp:91
RscString< 512 > NotificationNamePattern
Regular expression to match the notification name
Definition: NotificationFilter2.hpp:49
RscString< 32 > RedundancyTypePattern
Regular expression for redundancy type
Definition: NotificationFilter2.hpp:99
RscString< 32 > TimestampMin
Matches all timestamps after this timestamp
Definition: NotificationFilter2.hpp:66
RscString< 32 > TimestampMax
Matches all timestamps before this timestamp
Definition: NotificationFilter2.hpp:75
uint64 IdMax
Maximum matching Id (<= 1^64)
Definition: NotificationFilter2.hpp:41
void Serialize(RscWriter &writer) const override
Serializes the datatype. All fields of the datatype have to be serialized in use of RscWriter.
Definition: NotificationFilter2.hpp:109
uint64 IdMin
Minimum matching Id (>= 0)
Definition: NotificationFilter2.hpp:33
RscString< 32 > SeverityMin
Minimum matching Severity
Definition: NotificationFilter2.hpp:83
RscString< 512 > SenderNamePattern
Regular expresssion to match the sender name
Definition: NotificationFilter2.hpp:57
RscString< 32 > RedundancyRolePattern
Regular expression for redundancy role
Definition: NotificationFilter2.hpp:107
void Deserialize(RscReader &reader) override
Deserializes the datatype. All fields of the datatype have to be deserialized in use of RscReader.
Definition: NotificationFilter2.hpp:123
Marshalls structure or class data types. Serialize and Deserialize have to marshal fields in the same...
Definition: IRscSerializable.hpp:20
Reads data from Rsc
Definition: RscReader.hpp:27
T Read(void)
Reads an element of T from Rsc. With data tagging enabled RscType of T is validated.
Definition: RscReader.hpp:166
Writes data to Rsc.
Definition: RscWriter.hpp:32
void Write(const T &value)
Writes an element of T from Rsc. Datatag and format is determined deducted by type of T.
Definition: RscWriter.hpp:178
std::uint64_t uint64
The Arp unsigned integer type of 8 byte size.
Definition: PrimitiveTypes.hpp:40
Namespace for classes and interfaces for the Remote Service Call implementation
Root namespace for the PLCnext API