public ClientConfig()

in rocketmq-client-csharp/ClientConfig.cs [27:38]


        public ClientConfig()
        {
            var hostName = System.Net.Dns.GetHostName();
            var pid = System.Diagnostics.Process.GetCurrentProcess().Id;
            this.clientId_ = string.Format("{0}@{1}#{2}", hostName, pid, instanceName_);
            this._requestTimeout = TimeSpan.FromSeconds(3);
            this.longPollingIoTimeout_ = TimeSpan.FromSeconds(30);
            this.client_type_ = rmq::ClientType.Unspecified;
            this.access_point_ = new rmq::Endpoints();
            this.back_off_policy_ = new rmq::RetryPolicy();
            this._publishing = new Publishing();
        }