endExecutionNoData method
endExecutionWithData
will issue a CommandResult with
data: null
error: null
isExecuting : false
Implementation
void endExecutionNoData()
{
subject.add(const CommandResult<TResult>(null,null,true));
_canExecuteSubject.add(true);
}