PLCnext API Documentation 25.0.2.69
SelectMode.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8
9namespace Arp { namespace System { namespace Commons { namespace Net
10{
11
13enum class SelectMode
14{
16 Read = 0,
18 Write = 1,
20 Connect = 3,
22 Accept = 4
23};
24
25}}}} // end of namespace Arp::System::Commons::Net
26
@ Write
Specifies write access to the file. Data can be written to the file and the file pointer can be moved...
@ Read
Specifies read access to the file. Data can be read from the file and the file pointer can be moved....
@ Connect
Connect operation should be polled.
@ Accept
Accept operation should be polled.
SelectMode
Modes for Select call to check different data channels.
Definition: SelectMode.hpp:14
Root namespace for the PLCnext API