Remote Call Framework 3.4
ClientProgress.hpp
Go to the documentation of this file.
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2023, Delta V Software. All rights reserved.
6 // https://www.deltavsoft.com
7 //
8 // RCF is distributed under dual licenses - closed source or GPL.
9 // Consult your particular license for conditions of use.
10 //
11 // If you have not purchased a commercial license, you are using RCF under GPL terms.
12 //
13 // Version: 3.4
14 // Contact: support <at> deltavsoft.com
15 //
16 //******************************************************************************
17 
19 
20 #ifndef INCLUDE_RCF_CLIENTPROGRESS_HPP
21 #define INCLUDE_RCF_CLIENTPROGRESS_HPP
22 
23 #include <functional>
24 #include <memory>
25 
26 #include <RCF/Enums.hpp>
27 
28 namespace RCF {
29 
32  {
33  public:
34 
36  std::size_t mBytesTransferred = 0;
37 
39  std::size_t mBytesTotal = 0;
40 
43  };
44 
45 } // namespace RCF
46 
47 #endif // ! INCLUDE_RCF_CLIENTPROGRESS_HPP
std::size_t mBytesTransferred
Bytes transferred so far in this call.
Definition: ClientProgress.hpp:36
RemoteCallPhase mPhase
Current phase of the remote call.
Definition: ClientProgress.hpp:42
Describes the status of a remote call while in progress. See RCF::ClientStub::setRemoteCallProgressCa...
Definition: ClientProgress.hpp:31
std::size_t mBytesTotal
Total number of bytes to transfer in this call.
Definition: ClientProgress.hpp:39
Establishing network connection to server.
Definition: Enums.hpp:185
Definition: AmiIoHandler.hpp:23
RemoteCallPhase
Describes which activity a remote call is currently in.
Definition: Enums.hpp:182