Remote Call Framework 3.1
ClientProgress.hpp
Go to the documentation of this file.
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2019, 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.1
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  std::size_t mBytesTransferred = 0;
36  std::size_t mBytesTotal = 0;
37  RemoteCallPhase mPhase = Rcp_Connect;
38  };
39 
40 } // namespace RCF
41 
42 #endif // ! INCLUDE_RCF_CLIENTPROGRESS_HPP
Describes the status of a remote call while in progress. See RCF::ClientStub::setRemoteCallProgressCa...
Definition: ClientProgress.hpp:32
Definition: AmiIoHandler.hpp:24
RemoteCallPhase
Describes which activity a remote call is currently in.
Definition: Enums.hpp:183