#include <types.hpp>
|
using | NativeType = T |
|
using | HandlerType = Handler |
|
constexpr const T & | native () const noexcept |
|
constexpr T & | native () noexcept |
|
constexpr void | clear () noexcept |
|
template<typename T > |
constexpr T * | asWrapper (typename T::NativeType *native) noexcept |
|
template<typename T > |
constexpr const T * | asWrapper (const typename T::NativeType *native) noexcept |
|
template<typename T > |
constexpr T & | asWrapper (typename T::NativeType &native) noexcept |
|
template<typename T > |
constexpr const T & | asWrapper (const typename T::NativeType &native) noexcept |
|
template<typename T > |
constexpr T::NativeType * | asNative (T *wrapper) noexcept |
|
template<typename T > |
constexpr const T::NativeType * | asNative (const T *wrapper) noexcept |
|
template<typename T > |
constexpr T::NativeType & | asNative (T &wrapper) noexcept |
|
template<typename T > |
constexpr const T::NativeType & | asNative (const T &wrapper) noexcept |
|
◆ MonitoringParameters()
opcua::ua::MonitoringParameters::MonitoringParameters |
( |
double |
samplingInterval = 250.0 , |
|
|
ExtensionObject |
filter = {} , |
|
|
uint32_t |
queueSize = 1U , |
|
|
bool |
discardOldest = true |
|
) |
| |
|
inline |
Construct with default values from open62541.
The clientHandle
parameter cannot be set by the user, any value will be replaced by the client before sending the request to the server.
Definition at line 1946 of file types.hpp.
◆ discardOldest()
bool opcua::ua::MonitoringParameters::discardOldest |
( |
| ) |
const |
|
inlinenoexcept |
◆ filter() [1/2]
◆ filter() [2/2]
◆ queueSize()
uint32_t opcua::ua::MonitoringParameters::queueSize |
( |
| ) |
const |
|
inlinenoexcept |
◆ samplingInterval()
double opcua::ua::MonitoringParameters::samplingInterval |
( |
| ) |
const |
|
inlinenoexcept |
◆ Wrapper() [1/5]
◆ Wrapper() [2/5]
Copy constructor with native object.
Definition at line 151 of file wrapper.hpp.
◆ Wrapper() [3/5]
◆ Wrapper() [4/5]
Move constructor with native object.
Definition at line 159 of file wrapper.hpp.
◆ Wrapper() [5/5]