Asynchronous C++ RPC library based on ICon6, but networking library agnostic. Currently only uSocekts tcp/ssl reliable networking backend is implemented.
GNU General Public License v3.0
1
stars
0
forks
source link
Implement extensible Command and OnReturnCallback to allow any behavior to be executed. #8
Implement extensible Command and OnReturnCallback to allow any behavior to be passed between command execution queue's.
Good idea may be to use virtual base Command class and just overwrite it.
Implemented in two steps in dddca62 and dddca62.
Implementation uses Command as base class with single virtual void Execute()=0. Pointer to the objects is passed into CommandExecutionQueue.
Implement extensible
Command
andOnReturnCallback
to allow any behavior to be passed between command execution queue's. Good idea may be to use virtual baseCommand
class and just overwrite it.