Recover cancelled notification resolves #58

nix
Owen Green 6 years ago
parent 54f36f7736
commit 716d60912e

@ -51,6 +51,15 @@ struct WrapperState
std::atomic<bool> mInNRT{false};
std::atomic<bool> mNodeAlive{true};
Result mResult{};
~WrapperState()
{
if(!mJobDone && !mSynchronous)
{
std::cout << "Processing Cancelled" << std::endl;
}
}
};
/// Named, shared clients already have a lookup table in their adaptor class

Loading…
Cancel
Save