PLCnext API Documentation 25.0.2.69
SinkType.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
12namespace Arp { namespace Services { namespace DataLogger { namespace Services
13{
14
15using namespace Arp;
16
20enum class SinkType : int32
21{
25 None = 0,
26
30 Empty = 1,
31
35 Database = 2,
36
40 Volatile = 3,
41
45 TSDB = 4,
46};
47
49// global stream operators of enum LogLevel for logging and parsing
50ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, SinkType value);
51ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, SinkType& value);
52
53}}}} // end of namespace Arp::Services::DataLogger::Services
54
55template<> struct fmt::formatter<Arp::Services::DataLogger::Services::SinkType>: public fmt::ostream_formatter {};
std::int32_t int32
The Arp integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:35
SinkType
Enumeration of possible sink types.
Definition: SinkType.hpp:21
@ TSDB
Sink used to store data in timeseries data base. Cannot be used with IDataLoggerService2!
@ Volatile
Sink used to store data in volatile memory, i.e. after a power reset or a deletion of the session all...
@ Empty
No sink assigned to session yet.
Root namespace for the PLCnext API