RxCommandStream<TParam, TResult> constructor

RxCommandStream<TParam, TResult>(StreamProvider<TParam, TResult> provider, [ Observable<bool> canExecute ])

Implementation

factory RxCommandStream(StreamProvider<TParam, TResult> provider, [Observable<bool> canExecute] )
  {

 return new RxCommandStream._(provider, new BehaviorSubject<CommandResult<TResult>>(seedValue: new CommandResult<TResult>(null, null, false)), canExecute);
  }