Drwalin / ICon7

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

Closed Drwalin closed 6 months ago

Drwalin commented 8 months ago

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.

Drwalin commented 6 months ago

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.