Akka.Reactive.ActorSystemExtensions.Reactive C# (CSharp) Метод

Reactive() публичный статический Метод

Get the Rx integration API for the actor system.
public static Reactive ( this system ) : ReactiveApi
system this /// The actor system. ///
Результат ReactiveApi
        public static ReactiveApi Reactive(this ActorSystem system)
        {
            if (system == null)
                throw new ArgumentNullException(nameof(system));

            return ReactiveApiProvider.Instance.Apply(system);
        }
ActorSystemExtensions