PLCnext API Documentation
22.9.0.33
|
Implementation of IRscReadEnumerator used on client side. More...
#include <RscReadEnumerator.hxx>
Public Member Functions | |
RscReadEnumerator (RscReader &rscReader, bool isArrayEnumerator) | |
Constructs an RscEnumeratorBase instance. More... | |
RscReadEnumerator (const RscReadEnumerator &arg)=default | |
Copy constructor. More... | |
~RscReadEnumerator (void) | |
Destructs this instance and frees all resources. More... | |
size_t | BeginRead (void) override |
Begins the operation to read the enumerator. More... | |
bool | ReadNext (T ¤t) override |
Reads the next enumerator element. More... | |
bool | ReadNext (RscArrayReader ¤t) override |
Reads the next array enumerator element. Use this method only, if element contains object with an array. More... | |
void | EndRead (void) override |
Ends the operation to read the enumerator. All enumerator elements had to be already been read. More... | |
Static Public Attributes | |
static constexpr size_t | UndefinedArrayLength = std::numeric_limits<size_t>::max() |
![]() | |
static constexpr size_t | UndefinedArrayLength = std::numeric_limits<size_t>::max() |
Additional Inherited Members | |
![]() | |
typedef std::shared_ptr< IRscReadEnumerator > | Ptr |
![]() | |
IRscReadEnumerator (void)=default | |
Constructs an IRscArrayWriteEnumerator instance. More... | |
virtual | ~IRscReadEnumerator (void)=default |
Destructs this instance and frees all resources. More... | |
IRscReadEnumerator (const IRscReadEnumerator &arg)=default | |
IRscReadEnumerator & | operator= (const IRscReadEnumerator &arg)=default |
Implementation of IRscReadEnumerator used on client side.
|
inline |
Constructs an RscEnumeratorBase instance.
|
default |
Copy constructor.
|
inline |
Destructs this instance and frees all resources.
|
inlineoverridevirtual |
Begins the operation to read the enumerator.
Implements Arp::System::Rsc::Services::IRscReadEnumerator< T >.
|
inlineoverridevirtual |
Ends the operation to read the enumerator. All enumerator elements had to be already been read.
Implements Arp::System::Rsc::Services::IRscReadEnumerator< T >.
|
inlineoverridevirtual |
Reads the next array enumerator element. Use this method only, if element contains object with an array.
current | Reference to RscArrayReader. The given RscArrayReader will be configured by this method. |
Implements Arp::System::Rsc::Services::IRscReadEnumerator< T >.
|
inlineoverridevirtual |
Reads the next enumerator element.
current | Place to store next element |
Implements Arp::System::Rsc::Services::IRscReadEnumerator< T >.