public HttpHostConfiguration(IHttpBusConfiguration busConfiguration, IHttpTopologyConfiguration topologyConfiguration) : base(busConfiguration) { _busConfiguration = busConfiguration; _hostSettings = new ConfigurationHostSettings(); _topologyConfiguration = topologyConfiguration; }
public HttpBusConfiguration(IHttpTopologyConfiguration topologyConfiguration) : base(topologyConfiguration) { _topologyConfiguration = topologyConfiguration; _hosts = new HostCollection <IHttpHostConfiguration>(); }
public HttpTopologyConfiguration(IHttpTopologyConfiguration topologyConfiguration) { _messageTopology = topologyConfiguration.Message; _sendTopology = topologyConfiguration.Send; _publishTopology = topologyConfiguration.Publish; _consumeTopology = new InMemoryConsumeTopology(topologyConfiguration.Message); }
public HttpBusConfiguration(IHttpTopologyConfiguration topologyConfiguration) : base(topologyConfiguration) { HostConfiguration = new HttpHostConfiguration(this, topologyConfiguration); BusEndpointConfiguration = CreateEndpointConfiguration(); _busObservers = new BusObservable(); }
public HttpHostTopology(IHttpTopologyConfiguration topologyConfiguration) : base(topologyConfiguration) { }
HttpEndpointConfiguration(IHttpEndpointConfiguration parentConfiguration, IHttpTopologyConfiguration topologyConfiguration, IConsumePipe consumePipe = null) : base(parentConfiguration, topologyConfiguration, consumePipe) { _topologyConfiguration = topologyConfiguration; }
HttpEndpointConfiguration(IHttpEndpointConfiguration parentConfiguration, IHttpTopologyConfiguration topologyConfiguration) : base(parentConfiguration, topologyConfiguration) { _topologyConfiguration = topologyConfiguration; }
protected HttpEndpointConfiguration(IHttpTopologyConfiguration topologyConfiguration) : base(topologyConfiguration) { _topologyConfiguration = topologyConfiguration; }
public HttpEndpointConfiguration(IHttpTopologyConfiguration topologyConfiguration) : base(topologyConfiguration) { _topologyConfiguration = topologyConfiguration; }