public DefaultTransportFactory(IClientBootstrap <TMessage> bootstrap, ILoggerFactory factory) { this._bootstrap = bootstrap; this.Logger = factory.CreateLogger(this.GetType()); this._factory = factory; //this._bootstrap.DisConnected += Bootstrap_Disconnected; }
internal void BindDisconnect(IClientBootstrap <TMessage> clientBoot) { clientBoot.DisConnected += Channel_DisConnected; }
public DefaultTransportFactory(IClientBootstrap <TMessage> bootstrap) { this._bootstrap = bootstrap; //this._bootstrap.DisConnected += Bootstrap_Disconnected; }