Ejemplo n.º 1
0
        public TcpReactivePlatform(ITcpReactivePlatformSettings settings, IReactiveEnvironment environment)
            : base(environment)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            _queryEvaluator   = new TcpQueryEvaluator(this, settings.GetExecutablePath("QueryEvaluatorHost"), settings.QueryEvaluatorPort, settings.QueryEvaluatorUri);
            _queryCoordinator = new TcpQueryCoordinator(this, settings.GetExecutablePath("QueryCoordinatorHost"), settings.QueryCoordinatorPort, settings.QueryCoordinatorUri);
        }
Ejemplo n.º 2
0
 public InMemoryTestPlatform(IReactiveEnvironment environment)
     : base(environment)
 {
 }
Ejemplo n.º 3
0
 public AppDomainReactivePlatform(IReactiveEnvironment environment)
     : base(environment)
 {
     _queryCoordinator = new AppDomainQueryCoordinator <TQueryCoordinator>(this);
     _queryEvaluator   = new AppDomainQueryEvaluator <TQueryEvaluator>(this, QueryEvaluatorName);
 }
Ejemplo n.º 4
0
 public AppDomainTestPlatform(IReactiveEnvironment environment)
     : base(environment)
 {
 }
 public InMemoryReactivePlatform(IReactiveEnvironment environment)
     : base(environment)
 {
     _queryEvaluator   = new InMemoryQueryEvaluator <TQueryEvaluator>(this);
     _queryCoordinator = new InMemoryQueryCoordinator <TQueryCoordinator>(this);
 }
Ejemplo n.º 6
0
 public TcpReactivePlatform(IReactiveEnvironment environment)
     : this(new TcpReactivePlatformSettings(), environment)
 {
 }
Ejemplo n.º 7
0
 protected ReactivePlatformBase(IReactiveEnvironment environment)
 {
     _environment   = environment;
     _configuration = new ReactivePlatformConfiguration();
 }