Remote Call Framework 3.2
ClientProgress.hpp
Go to the documentation of this file.
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2020, Delta V Software. All rights reserved.
6 // http://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
12 // under GPL terms.
13 //
14 // Version: 3.2
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
20 
21 #ifndef INCLUDE_RCF_CLIENTPROGRESS_HPP
22 #define INCLUDE_RCF_CLIENTPROGRESS_HPP
23 
24 #include <functional>
25 #include <memory>
26 
27 #include <RCF/Enums.hpp>
28 
29 namespace RCF {
30 
33  {
34  public:
35 
37  std::size_t mBytesTransferred = 0;
38 
40  std::size_t mBytesTotal = 0;
41 
44  };
45 
46 } // namespace RCF
47 
48 #endif // ! INCLUDE_RCF_CLIENTPROGRESS_HPP
std::size_t mBytesTransferred
Bytes transferred so far in this call.
Definition: ClientProgress.hpp:37
RemoteCallPhase mPhase
Current phase of the remote call.
Definition: ClientProgress.hpp:43
Describes the status of a remote call while in progress. See RCF::ClientStub::setRemoteCallProgressCa...
Definition: ClientProgress.hpp:32
std::size_t mBytesTotal
Total number of bytes to transfer in this call.
Definition: ClientProgress.hpp:40
Establishing network connection to server.
Definition: Enums.hpp:186
Definition: AmiIoHandler.hpp:24
RemoteCallPhase
Describes which activity a remote call is currently in.
Definition: Enums.hpp:183