예제 #1
0
 public void StartStream()
 {
     _synchronousInvoker.ExecuteSynchronously(StartStream(Resources.Stream_Sample));
 }
        public void StartStream()
        {
            Action startStreamAction = () => _synchronousInvoker.ExecuteSynchronously(() => StartStream(Resources.Stream_Sample));

            _singleAggregateExceptionThrower.ExecuteActionAndThrowJustOneExceptionIfExist(startStreamAction);
        }
예제 #3
0
        public void StartStream(string url)
        {
            Action startStreamAction = () => _synchronousInvoker.ExecuteSynchronously(StartStreamAsync(url));

            _singleAggregateExceptionThrower.ExecuteActionAndThrowJustOneExceptionIfExist(startStreamAction);
        }
예제 #4
0
 public void StartStream(string url)
 {
     _synchronousInvoker.ExecuteSynchronously(StartStreamAsync(url));
 }