Exemple #1
0
        protected async Task send <T>(T message)
        {
            if (_history == null)
            {
                await withApplication();
            }

            await _history.WatchAsync(() => _runtime.Messaging.Send(message), 10000);
        }
 protected Task send <T>(T message)
 {
     return(_history.WatchAsync(() => _runtime.Messaging.Send(message), 10000));
 }