Qore Programming Language Reference Manual 1.16.1
Loading...
Searching...
No Matches
QC_AbstractPollOperation.dox.h
1
2namespace Qore {
4
7
8public:
10
15abstract *hash<SocketPollInfo> continuePoll();
16
17public:
19
21abstract string getGoal();
22
23public:
25
30auto getOutput();
31
32public:
34
36abstract string getState();
37
38public:
40
42abstract bool goalReached();
43};
44}
Abstract poll operation objects provide the polling interface for pollable objects.
Definition: QC_AbstractPollOperation.dox.h:6
abstract string getState()
Returns the current state.
abstract bool goalReached()
Returns True when the goal as been reached.
abstract *hash< SocketPollInfo > continuePoll()
Returns a socket poll hash if polling should continue or NOTHING if complete.
abstract string getGoal()
Returns the goal.
auto getOutput()
Returns any output generated by any completed poll action.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3