getState
gets the current DataProcessor state
string getState();
string | dataprocessor state |
Example
//dp is a dataprocessor object
dp.getState();
Details
Possible states are as follows:
- true - the DataProcessor is in action
- saving - the request has come from server, DataProcessor performs saving operation
- false - the DataProcessor is not active
See also
Back to top